-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclaude-mcp.example.json
More file actions
91 lines (82 loc) · 3.76 KB
/
Copy pathclaude-mcp.example.json
File metadata and controls
91 lines (82 loc) · 3.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"$schema": "https://modelcontextprotocol.io/schema/mcp.json",
"_comment": "Claude Code MCP Server Configuration Example",
"_description": "Copy this to ~/.config/claude/mcp.json (Linux/WSL) or ~/Library/Application Support/Claude/mcp.json (macOS)",
"_wsl_note": "For WSL: Use Linux paths, Docker Desktop integration works seamlessly",
"mcpServers": {
"sequential-thinking": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-sequential-thinking"],
"_category": "CORE - Recommended for all users",
"_description": "Enhanced reasoning and problem-solving capabilities"
},
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem"],
"_category": "CORE - Recommended for all users",
"_description": "File system access and manipulation",
"_note": "Provides additional file operations beyond Claude Code's built-in tools"
},
"web-search": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-web-search"],
"_category": "OPTIONAL - Useful for research",
"_description": "Web search capabilities for finding documentation and solutions",
"_note": "Requires API key - check MCP documentation for setup"
},
"github": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"GITHUB_PERSONAL_ACCESS_TOKEN",
"ghcr.io/github/github-mcp-server"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "YOUR_GITHUB_TOKEN_HERE"
},
"_category": "OPTIONAL - For GitHub integration",
"_description": "GitHub API integration for repository operations",
"_setup": "1. Get token from https://github.com/settings/tokens (classic token with repo scope)",
"_setup2": "2. Replace YOUR_GITHUB_TOKEN_HERE with your actual token",
"_setup3": "3. Requires Docker (Docker Desktop for WSL users)",
"_wsl_note": "Ensure Docker Desktop has WSL2 integration enabled in Settings > Resources > WSL Integration"
},
"context7": {
"command": "npx",
"args": ["-y", "@upstash/context7-mcp@latest"],
"_category": "EXPERIMENTAL - Untested in Claude Code",
"_description": "Context management with Upstash",
"_note": "May require additional setup - see https://github.com/upstash/context7-mcp"
},
"browsertools": {
"command": "npx",
"args": ["@agentdeskai/browser-tools-mcp"],
"_category": "EXPERIMENTAL - Untested in Claude Code",
"_description": "Browser automation capabilities",
"_note": "Compatibility with Claude Code not verified"
},
"magic-mcp": {
"command": "npx",
"args": ["-y", "@21st-dev/magic-mcp"],
"_category": "EXPERIMENTAL - Untested in Claude Code",
"_description": "Magic MCP server for enhanced capabilities",
"_note": "Compatibility with Claude Code not verified"
}
},
"_installation_instructions": {
"linux_wsl": "cp claude-mcp.example.json ~/.config/claude/mcp.json",
"macos": "cp claude-mcp.example.json ~/Library/Application\\ Support/Claude/mcp.json",
"windows": "Not applicable - use WSL for Claude Code on Windows",
"note": "Remove all _comment, _description, _category, _note, _setup*, _wsl_note, and _installation_instructions fields before using",
"minimal_config": "For minimal setup, keep only sequential-thinking and filesystem servers"
},
"_security_warnings": {
"api_keys": "NEVER commit this file with real API keys to git",
"tokens": "Add this file to .gitignore if it contains secrets",
"docker_env": "Docker environment variables are visible to container - use secure token storage in production",
"wsl_access": "WSL can access Windows filesystem - be cautious with credential files"
}
}