mcp_advanced.json•875 B
{
"mcpServers": {
"weather-server": {
"command": "python",
"args": ["main.py"],
"cwd": ".",
"env": {
"PYTHONPATH": ".",
"PYTHONUNBUFFERED": "1"
},
"description": "Weather MCP Server providing weather alerts and echo functionality"
},
"weather-server-direct": {
"command": "python",
"args": ["-m", "server.weather"],
"cwd": ".",
"env": {
"PYTHONPATH": "."
},
"description": "Direct weather server module execution"
},
"weather-server-uv": {
"command": "uv",
"args": ["run", "python", "main.py"],
"cwd": ".",
"env": {
"PYTHONPATH": "."
},
"description": "Weather server using uv package manager"
}
},
"mcpClient": {
"defaultServer": "weather-server",
"autoStart": true,
"logLevel": "info"
}
}