File size: 774 Bytes
f376f50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
mcp_config = {
    "mcpServers": {
        "aworld": {
            "url": "http://localhost:20000/sse"
        },
        "amap-amap-sse": {
            "type": "sse",
            "url": "https://mcp.amap.com/sse?key=YOUR_API_KEY",
            "timeout": 5,
            "sse_read_timeout": 300
        },
        "tavily-mcp": {
            "type": "stdio",
            "command": "npx",
            "args": [
                "-y",
                "tavily-mcp@0.1.2"
            ],
            "env": {
                "TAVILY_API_KEY": "YOUR_API_KEY"
            }
        },
        "simple-calculator": {
            "type": "sse",
            "url": "http://127.0.0.1:8500/calculator/sse",
            "timeout": 5,
            "sse_read_timeout": 300
        }
    }
}