Claude Desktop Cursor Cline (VS Code) Windsurf Continue.dev Zed Claude Code (CLI)
~/Library/Application Support/Claude/claude_desktop_config.json · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"run-mcp-with-aws-lambda": {
"command": "python",
"args": [
"-m",
"mcp_lambda"
],
"_inferred": true
}
}
}
⧉ Copy
Open Claude Desktop → Settings → Developer → Edit Config. Restart after saving.
~/.cursor/mcp.json · .cursor/mcp.json
{
"mcpServers": {
"run-mcp-with-aws-lambda": {
"command": "python",
"args": [
"-m",
"mcp_lambda"
],
"_inferred": true
}
}
}
⧉ Copy
Cursor uses the same mcpServers schema as Claude Desktop. Project config wins over global.
VS Code → Cline → MCP Servers → Edit
{
"mcpServers": {
"run-mcp-with-aws-lambda": {
"command": "python",
"args": [
"-m",
"mcp_lambda"
],
"_inferred": true
}
}
}
⧉ Copy
Click the MCP Servers icon in the Cline sidebar, then "Edit Configuration".
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"run-mcp-with-aws-lambda": {
"command": "python",
"args": [
"-m",
"mcp_lambda"
],
"_inferred": true
}
}
}
⧉ Copy
Same shape as Claude Desktop. Restart Windsurf to pick up changes.
~/.continue/config.json
{
"mcpServers": [
{
"name": "run-mcp-with-aws-lambda",
"command": "python",
"args": [
"-m",
"mcp_lambda"
]
}
]
}
⧉ Copy
Continue uses an array of server objects rather than a map.
~/.config/zed/settings.json
{
"context_servers": {
"run-mcp-with-aws-lambda": {
"command": {
"path": "python",
"args": [
"-m",
"mcp_lambda"
]
}
}
}
}
⧉ Copy
Add to context_servers. Zed hot-reloads on save.
claude mcp add run-mcp-with-aws-lambda -- python -m mcp_lambda
⧉ Copy
One-liner. Verify with claude mcp list. Remove with claude mcp remove.