Skip to content

MCP Integrations

Model Context Protocol (MCP) servers extend Claude Kit with powerful capabilities like real-time documentation, persistent memory, and browser automation.

MCP (Model Context Protocol) is an open standard that allows AI assistants to connect with external tools and data sources. Claude Kit includes pre-configured MCP servers that enhance your development workflow.

ServerPackagePurpose
Context7@upstash/context7-mcpReal-time library documentation
Sequential@modelcontextprotocol/server-sequential-thinkingStructured problem-solving
Playwright@playwright/mcpBrowser automation
Memory@modelcontextprotocol/server-memoryPersistent knowledge graph
Filesystem@modelcontextprotocol/server-filesystemSecure file operations

Create a .mcp.json file in your project root. Choose your platform:

{
"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", "."]
}
}
}

Windows requires the cmd /c wrapper:

{
"mcpServers": {
"context7": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@upstash/context7-mcp"]
},
"sequential": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-sequential-thinking"]
},
"playwright": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@playwright/mcp"]
},
"memory": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-memory"]
},
"filesystem": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-filesystem", "."]
}
}
}
  • Node.js 18+
  • npx available in PATH

Start a new Claude Code session. MCP servers will load automatically. Test with:

Ask Claude about React hooks using Context7

Context7 fetches current library documentation, eliminating outdated API references from training data.

Sequential Thinking enables step-by-step analysis with confidence tracking for complex debugging and planning.

Playwright provides cross-browser automation for E2E testing without separate test infrastructure.

Memory server maintains knowledge across sessions, remembering your patterns and preferences.

Filesystem server provides controlled file access with security boundaries.

MCP servers are automatically used when configured. Claude Kit commands and modes include explicit guidance for optimal MCP usage.

For example, when you run /research react hooks:

  1. Context7 fetches current React documentation
  2. Sequential Thinking structures the analysis
  3. Memory stores findings for future reference