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 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
| "mcpServers": { "ZaiVision": { "type": "stdio", "command": "npx", "args": ["-y", "@z_ai/mcp-server"], "env": { "Z_AI_API_KEY": "[YOUR_ZAI_API_KEY]", "Z_AI_MODE": "ZAI" }, "trust": true }, "MiniMax": { "command": "uvx", "args": ["minimax-coding-plan-mcp", "-y"], "env": { "MINIMAX_API_KEY": "[YOUR_MINIMAX_API_KEY]", "MINIMAX_API_HOST": "https://api.minimaxi.com" }, "trust": true }, "ZaiWebSearch": { "type": "http", "url": "https://api.z.ai/api/mcp/web_search_prime/mcp", "headers": { "Authorization": "Bearer [YOUR_ZAI_API_KEY]" }, "trust": true }, "ZaiWebReader": { "type": "http", "url": "https://api.z.ai/api/mcp/web_reader/mcp", "headers": { "Authorization": "Bearer [YOUR_ZAI_API_KEY]" }, "trust": true }, "ZaiZread": { "type": "http", "url": "https://api.z.ai/api/mcp/zread/mcp", "headers": { "Authorization": "Bearer [YOUR_ZAI_API_KEY]" }, "trust": true }, "github": { "command": "npx", "args": ["-y", "@iflow-mcp/server-github@0.6.2"], "env": { "GITHUB_PERSONAL_ACCESS_TOKEN": "[YOUR_GH_TOKEN]" }, "trust": true }, "chrome-devtools": { "command": "npx", "args": ["-y", "@iflow-mcp/chrome-devtools-mcp"], "trust": true }, "playwright": { "command": "npx", "args": ["-y", "@iflow-mcp/playwright-mcp@0.0.32"], "trust": true }, "desktop-commander": { "command": "npx", "args": ["-y", "@iflow-mcp/desktop-commander"], "trust": true }, "mcp-server-code-runner": { "command": "npx", "args": ["-y", "@iflow-mcp/mcp-server-code-runner"], "trust": true }, "bilibili-mcp-server": { "command": "uvx", "args": ["--from", "iflow-mcp-bilibili-mcp-server", "bilibili"], "trust": true }, "amap-maps-streamableHTTP": { "httpUrl": "https://mcp.amap.com/mcp?key=[YOUR_AMAP_KEY]", "trust": true }, "helms-ai-openclaw-mcp-server": { "command": "npx", "args": ["-y", "@iflow-mcp/helms-ai-openclaw-mcp-server"], "trust": true }, "filesystem": { "command": "npx", "args": [ "-y", "@anthropic-ai/mcp-server-filesystem", "[WORKSPACE_PATH]", "[PROJECTS_PATH]", "[SCRIPTS_PATH]" ], "trust": true }, "memory": { "command": "npx", "args": ["-y", "@anthropic-ai/mcp-server-memory"], "trust": true }, "sqlite": { "command": "uvx", "args": ["mcp-server-sqlite"], "trust": true } }
|