Command Integration
Command Integration
Section titled “Command Integration”MCP servers are automatically used by Claude Kit commands and modes. This guide shows which servers enhance each command and how they work together.
Commands + MCP Servers
Section titled “Commands + MCP Servers”Development Commands
Section titled “Development Commands”| Command | MCP Servers | Enhancement |
|---|---|---|
/feature | Context7, Sequential, Memory, Filesystem, Playwright | Full development workflow with docs, planning, persistence |
/fix | Sequential, Memory, Playwright, Context7, Filesystem | Systematic debugging with browser testing |
/test | Playwright, Filesystem, Context7, Memory | E2E tests, file management, testing patterns |
/review | Playwright, Memory, Sequential, Filesystem | Visual review, consistent standards |
Planning Commands
Section titled “Planning Commands”| Command | MCP Servers | Enhancement |
|---|---|---|
/plan | Sequential, Memory, Context7, Filesystem | Structured breakdown, persistent decisions |
/brainstorm | Sequential, Memory, Context7 | Organized exploration, design persistence |
/research | Context7, Sequential, Memory | Real-time docs, thorough analysis |
Utility Commands
Section titled “Utility Commands”| Command | MCP Servers | Enhancement |
|---|---|---|
/index | Filesystem, Memory | Project scanning, structure persistence |
Modes + MCP Servers
Section titled “Modes + MCP Servers”| Mode | Primary MCP | Best For |
|---|---|---|
| brainstorm | Sequential + Memory | Design sessions with persistent ideas |
| deep-research | Sequential + Context7 | Thorough technical investigation |
| implementation | Filesystem + Context7 | Focused coding with accurate docs |
| review | Playwright + Memory | UI review with consistent standards |
| orchestration | All 5 | Complex multi-step parallel work |
Example Workflows
Section titled “Example Workflows”Full Feature Development
Section titled “Full Feature Development”/feature Add user profile with avatar uploadMCP Flow:
- Context7 — Fetches React file upload documentation
- Sequential — Plans component structure step-by-step
- Memory — Recalls UI patterns from previous features
- Filesystem — Creates files in correct locations
- Playwright — Tests upload flow in browser
Complex Debugging
Section titled “Complex Debugging”/fix Authentication fails intermittently on mobileMCP Flow:
- Memory — Recalls auth architecture from previous sessions
- Sequential — Analyzes race conditions systematically
- Playwright — Tests on mobile device emulation
- Context7 — Checks session handling best practices
Research & Planning
Section titled “Research & Planning”/research --mode=deep-research JWT vs Session authenticationMCP Flow:
- Sequential — Structures comparison step-by-step
- Context7 — Fetches current JWT and session library docs
- Memory — Stores findings for future reference
Project Indexing
Section titled “Project Indexing”/indexMCP Flow:
- Filesystem — Scans project with
directory_tree - Memory — Stores structure as knowledge graph
Server Synergy
Section titled “Server Synergy”Context7 + Memory
Section titled “Context7 + Memory”Pattern: Research → Store → Recall
Session 1: /research React Server Components→ Context7 fetches RSC documentation→ Memory stores key patterns
Session 2: /feature Add data fetching→ Memory recalls RSC patterns→ Implementation uses correct approachSequential + Memory
Section titled “Sequential + Memory”Pattern: Analyze → Decide → Remember
/brainstorm Database migration strategy→ Sequential explores options step-by-step→ Memory stores final decision→ Future sessions recall the decisionPlaywright + Context7
Section titled “Playwright + Context7”Pattern: Test → Verify → Document
/test E2E checkout flow→ Playwright automates browser testing→ Context7 provides testing library docs→ Tests use correct assertionsFilesystem + Memory
Section titled “Filesystem + Memory”Pattern: Scan → Store → Navigate
/index→ Filesystem scans project structure→ Memory creates project knowledge graph→ Future commands know where files areConfiguration Tips
Section titled “Configuration Tips”Platform Note
Section titled “Platform Note”Configuration differs by platform:
- Linux/macOS: Use
"command": "npx"directly - Windows: Use
"command": "cmd"with"/c", "npx"in args
Examples below show Linux/macOS syntax. For Windows, see MCP Overview.
Minimal Setup
Section titled “Minimal Setup”For basic usage, Context7 and Sequential are most impactful:
{ "mcpServers": { "context7": { "command": "npx", "args": ["-y", "@upstash/context7-mcp"] }, "sequential": { "command": "npx", "args": ["-y", "@modelcontextprotocol/server-sequential-thinking"] } }}Full Setup
Section titled “Full Setup”For complete Claude Kit integration, use all 5 servers:
{ "mcpServers": { "context7": { "command": "npx", "args": ["-y", "@upstash/context7-mcp"] }, "sequential": { "command": "npx", "args": ["-y", "@modelcontextprotocol/server-sequential-thinking"] }, "playwright": { "command": "npx", "args": ["-y", "@playwright/mcp"] }, "memory": { "command": "npx", "args": ["-y", "@modelcontextprotocol/server-memory"] }, "filesystem": { "command": "npx", "args": ["-y", "@modelcontextprotocol/server-filesystem", "."] } }}Performance Notes
Section titled “Performance Notes”First Run
Section titled “First Run”First run downloads npm packages (one-time). Subsequent starts are faster.
Startup Order
Section titled “Startup Order”Servers start in parallel. All should be ready within seconds.
Resource Usage
Section titled “Resource Usage”Each server runs as a separate process. Total overhead is minimal but consider disabling unused servers for resource-constrained environments.
Next Steps
Section titled “Next Steps”- MCP Overview — Setup and configuration
- Commands Overview — All available commands
- Modes Overview — Behavioral modes