Sandbox
@Dianel555/gemini-superclaude-mcp-server

Gemini CLI MCP server for SuperClaude commands

This repository packages a SuperClaude-based MCP server for Gemini CLI. It routes `/sc:` commands, picks from 14 specialist agents, and coordinates six MCP servers for tasks like docs lookup, browser testing, code editing, and session memory. The README also includes command install scripts and Gemini CLI config examples.

39 stars6 forksJavaScriptUpdated 1y ago
Who it's for

Builders who want Gemini CLI to run SuperClaude commands, pick specialist agents, and coordinate MCP tools.

What it delivers

You can use Gemini CLI with reusable `/sc:` commands instead of wiring each workflow by hand.

What it does

22 `/sc:` commands

Provides command shortcuts for build, analyze, troubleshoot, test, document, task, reflect, and business-panel flows.

14 specialist agents

Routes work to domain agents such as system-architect, security-engineer, quality-engineer, and technical-writer.

6 MCP integrations

Connects Sequential, Context7, Magic, Playwright, Morphllm, and Serena for reasoning, docs, UI, testing, editing, and memory.

Gemini CLI command install

Adds the SuperClaude commands to Gemini CLI through TOML configuration and the install script.

Cross-session persistence

Uses `sc:load` and `sc:save` with Serena to remember context across sessions.

Business panel analysis

Adds multi-expert business analysis with thinkers like Christensen, Porter, Drucker, and Taleb.

README

MSeeP.ai Security Assessment Badge

Gemini SuperClaude MCP Server

Version Node SuperClaude Commands Agents MCP Servers Verified on MseeP

English|中文

GEMINI_CLI_COMMANDS

A fully upgraded MCP server providing SuperClaude Framework v4.0.9 compatibility for Gemini CLI. Features enhanced command routing with 22 specialized /sc: commands (including new business-panel), 14 domain-expert agents, and 6 integrated MCP servers plus full Gemini CLI integration via TOML commands.

🚀 What's New in v2.0.2 (SuperClaude v4.0.9 Upgrade)

  • 💼 NEW: Business Panel: Multi-expert business analysis with 9 thought leaders (Christensen, Porter, Drucker, Godin, Kim & Mauborgne, Collins, Taleb, Meadows, Doumont)
  • 🎯 Gemini CLI Integration: All 22 commands available as /sc:command in Gemini CLI via TOML configuration
  • 📦 Auto Installation: npm run install-commands for seamless Gemini CLI integration
  • 🧠 Enhanced Routing: Intelligent context analysis, agent selection, and MCP server coordination.
  • 🤖 14 Specialized Agents: Replaces the old persona system with domain experts for architecture, security, performance, etc.
  • 🔗 6 MCP Servers: Full integration with Sequential, Context7, Magic, Playwright, Morphllm, and Serena.
  • 📋 22 Specialized Commands: All commands now use the /sc: namespace with business panel added.
  • ⚡ 5 Behavioral Modes: Brainstorming, Introspection, Orchestration, Task Management, and Token Efficiency modes.
  • 💾 Cross-Session Persistence: sc:load and sc:save commands powered by the Serena MCP for session memory.

🔧 Quick Start

Method 1: NPM Package (Recommended)

# Install globally
npm install -g gemini-superclaude-mcp-server

# TOML Command Configuration
npm run install-commands # Locate the gemini-superclaude-mcp-server/ directory in the global npm installation folder and run the command there (or, if configuring via npx only, you can directly copy the toml file to the corresponding directory)

# Configure Gemini CLI (~/.gemini/settings.json)
{
  "mcpServers": {
    "superclaude": {
      "command": "npx",
      "args": ["-y", "gemini-superclaude-mcp-server"],
      "env": {
        "CLAUDE_CONFIG_DIR": "${HOME}/.claude"
      }
    }
  }
}

Method 2: Local Development

# Clone and setup
git clone https://github.com/Dianel555/gemini-superclaude-mcp-server.git
cd gemini-superclaude-mcp-server
npm install

# Make script executable
chmod +x superclaude-server.js

# Configure Gemini CLI (~/.gemini/settings.json)
{
  "mcpServers": {
    "superclaude": {
      "command": "node",
      "args": ["/full/path/to/superclaude-server.js"],
      "env": {
        "CLAUDE_CONFIG_DIR": "${HOME}/.claude"
      }
    }
  }
}

# Validate and test
npm run validate
npm test

🤖 Enhanced Agent System (Formerly Personas)

14 Specialized Agents provide domain expertise for any task:

AgentFocusThinking ModeAuto-TriggersSpecialization
system-architectSystem designSystematicarchitecture, design, scalabilitysc:build, sc:analyze
frontend-architectUser experienceUser-centricui, component, responsivesc:build, sc:implement
backend-architectData integrityData-drivenapi, database, servicesc:implement, sc:troubleshoot
devops-architectAutomation & CI/CDAutomation-focuseddeploy, infrastructure, ci/cdsc:workflow, sc:git
security-engineerThreat modelingThreat-focusedsecurity, vulnerability, authsc:analyze, sc:improve
performance-engineerOptimizationMeasurement-drivenoptimize, performance, bottlenecksc:analyze, sc:improve
quality-engineerTesting strategySystematic-validationtest, quality, validationsc:test, sc:troubleshoot
refactoring-expertCode qualitySimplification-focusedrefactor, cleanup, debtsc:improve, sc:cleanup
root-cause-analystProblem investigationInvestigativedebug, investigate, analyzesc:analyze, sc:troubleshoot
requirements-analystRequirements discoveryDiscovery-focusedrequirements, scope, planningsc:brainstorm, sc:estimate
python-expertPython architecturePythonic-focusedpython, django, flasksc:implement, sc:improve
socratic-mentorKnowledge transferEducationallearn, explain, understandsc:explain, sc:document
learning-guideConcept simplificationPedagogicaltutorial, beginner, examplesc:explain, sc:document
technical-writerDocumentationCommunication-focuseddocument, readme, guidesc:document, sc:save

🔗 Real MCP Integration

6 Supported Servers

  • Sequential: Complex multi-step reasoning
  • Context7: Documentation and pattern lookup
  • Magic: UI component generation
  • Playwright: E2E testing and browser automation
  • Morphllm: Pattern-based code editing and bulk transformations
  • Serena: Semantic code understanding and cross-session memory

📋 Complete Command Set

22 Core Commands with /sc: namespace for SuperClaude Framework v4.0.9 compliance:

Development & Orchestration

  • sc:build, sc:implement, sc:workflow, sc:design

Analysis & Discovery

  • sc:analyze, sc:brainstorm, sc:troubleshoot, sc:business-panel, sc:estimate

Quality & Maintenance

  • sc:improve, sc:test, sc:cleanup, sc:git

Documentation & Learning

  • sc:explain, sc:document

Operations & Coordination

  • sc:task, sc:spawn, sc:load, sc:save, sc:reflect

Meta & Discovery

  • sc:index, sc:select-tool

🎯 Gemini CLI Integration

Install SuperClaude commands directly in Gemini CLI:

# Install all 22 commands as /sc: shortcuts
npm run install-commands

# Use in Gemini CLI
/sc:analyze --security --deep
/sc:business-panel strategy.md --experts porter,taleb --mode debate  
/sc:build ecommerce --framework nextjs --magic

# Uninstall if needed
npm run uninstall-commands

Business Panel (New in v4.0.9)

Multi-expert business analysis with 9 thought leaders:

  • Clayton Christensen: Disruption Theory, Jobs-to-be-Done
  • Michael Porter: Competitive Strategy, Five Forces
  • Peter Drucker: Management Philosophy, MBO
  • Seth Godin: Marketing Innovation, Tribe Building
  • Kim & Mauborgne: Blue Ocean Strategy
  • Jim Collins: Organizational Excellence
  • Nassim Taleb: Risk Management, Antifragility
  • Donella Meadows: Systems Thinking
  • Jean-luc Doumont: Communication Systems

📊 Architecture (v4.0.9)

┌────────────────────────────────────────────────────────────┐
│                        Gemini CLI                          │
│          ┌─────────────────────────────────────┐           │
│          │    22 /sc: Commands via TOML        │           │
│          └─────────────────────────────────────┘           │
├────────────────────────────────────────────────────────────┤
│          Gemini SuperClaude MCP Server v2.0.2              │
│   ┌─────────────┐  ┌─────────────────┐  ┌─────────────┐    │
│   │ Enhanced    │  │   14-Agent      │  │ Business    │    │
│   │ Routing     │  │   System        │  │ Panel (9)   │    │
│   └─────────────┘  └─────────────────┘  └─────────────┘    │
├────────────────────────────────────────────────────────────┤
│           MCP Orchestration Layer (6 Servers)              │
│ ┌─────────┐┌────────┐┌─────┐┌──────────┐┌────────┐┌──────┐ │
│ │Sequentia││Context7││Magic││Playwright││Morphllm││Serena│ │
│ └─────────┘└────────┘└─────┘└──────────┘└────────┘└──────┘ │
├────────────────────────────────────────────────────────────┤
│              SuperClaude Framework v4.0.9                  │
└────────────────────────────────────────────────────────────┘

🤝 Contributing

PRs are welcome! Please fork the repository, create a feature branch, and open a pull request.

🙏 Acknowledgments

📄 License

MIT License - see the LICENSE file for details.

Star History

Star History Chart

Files in the repo

Repository payload15 top-level entries
  • .gemini
  • .gitignore
  • .npmignore
  • GEMINI_CLI_COMMANDS.md
  • gemini-superclaude.md
  • install-commands.js
  • LICENSE
  • package-lock.json
  • package.json
  • README.md
  • superclaude-server-v3-backup.js
  • superclaude-server.js
  • test-server.js
  • uninstall-commands.js
  • validate-config.js

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More connectors

High-performance code intelligence MCP server. Indexes codebases into a persistent knowledge graph — average repo in milliseconds. 158 languages, sub-ms queries, 99% fewer tokens. Single static binary, zero dependencies.

43k

Universal provider proxy for OpenAI Codex & Claude Code — use any LLM (Claude, Gemini, Grok, DeepSeek, Ollama…) with Codex CLI, App, SDK, and Claude Code

14k
okf-memory/
okf-agent-memory

Git-native persistent memory for AI coding agents. Implements Google OKF v0.2 with sub-300µs in-memory BM25 search, embedded MCP server, and progressive disclosure. Slashes token bloat by 80% with zero external databases or dependencies. Built in pure Go.

547
tirth8205/
code-review-graph

Local-first code intelligence graph for MCP and CLI. Builds a persistent map of your codebase so AI coding tools read only what matters, with benchmarked context reductions on reviews and large-repo workflows.

31k
2akouwu/
reverify

Stop your AI from making things up — it proposes, deterministic tools decide, every claim checked against ground truth with evidence. Grounded facts and context survive resets. Reverse engineering is the proving ground. MCP server + CLI.

1.1k
t8y2/dbxConnectors

20 MB lightweight cross-platform database client for 90+ databases, including MySQL, PostgreSQL, SQLite, Redis, MongoDB, DuckDB, SQL Server, and Dameng. Built-in AI, MCP Server, CLI, desktop and Docker. | 轻量级跨平台数据库管理工具,支持 MySQL、PostgreSQL、SQLite、Redis、MongoDB、达梦等 90+ 数据库,提供桌面端、Docker、CLI、内置 AI 助手和 MCP Server。

19k