Files
gh-cskiro-claudex/skills/claude-code/mcp-server-creator/examples/claude-desktop-config-example.json
2025-11-29 18:16:40 +08:00

41 lines
910 B
JSON

{
"mcpServers": {
"weather": {
"command": "node",
"args": [
"/Users/username/projects/mcp-weather-server/build/index.js"
]
},
"database": {
"command": "node",
"args": [
"/Users/username/projects/mcp-database-server/build/index.js"
],
"env": {
"DATABASE_URL": "postgresql://user:pass@localhost:5432/mydb"
}
},
"python-server": {
"command": "uv",
"args": [
"--directory",
"/Users/username/projects/mcp-python-server",
"run",
"main.py"
],
"env": {
"API_KEY": "your_api_key_here"
}
},
"filesystem": {
"command": "node",
"args": [
"/Users/username/projects/mcp-filesystem-server/build/index.js"
],
"env": {
"ALLOWED_DIRECTORIES": "/Users/username/Documents,/Users/username/Projects"
}
}
}
}