Files
xiaozhi-esp32-server/main/xiaozhi-server/mcp_server_settings.json
T

57 lines
1.9 KiB
JSON
Raw Normal View History

2025-03-20 18:20:50 +08:00
{
2025-03-24 10:28:48 +08:00
"des": [
"在data目录下创建.mcp_server_settings.json文件,可以选择下面的MCP服务,也可以自行添加新的MCP服务。",
"后面不断测试补充好用的mcp服务,欢迎大家一起补充。",
"记得删除注释行,des属性仅为说明,不会被解析。",
2025-05-04 23:37:17 +08:00
"des和link属性,仅为说明安装方式,方便大家查看原始链接,不是必须项。",
"当前支持三种传输模式:stdio(标准输入输出), sse(Server-Sent Events), streamable-http(流式HTTP)。"
2025-03-24 10:28:48 +08:00
],
2025-03-20 18:20:50 +08:00
"mcpServers": {
2025-05-04 22:48:19 +08:00
"Home Assistant": {
"command": "mcp-proxy",
"args": [
"http://YOUR_HA_HOST/mcp_server/sse"
],
"env": {
"API_ACCESS_TOKEN": "YOUR_API_ACCESS_TOKEN"
}
},
2025-03-20 18:20:50 +08:00
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
2025-03-24 10:28:48 +08:00
"/Users/username/Desktop",
2025-03-20 18:20:50 +08:00
"/path/to/other/allowed/dir"
2025-03-24 10:28:48 +08:00
],
"link":"https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem"
2025-03-20 18:20:50 +08:00
},
2025-03-24 10:28:48 +08:00
"playwright": {
2025-03-20 18:20:50 +08:00
"command": "npx",
2025-03-24 10:28:48 +08:00
"args": ["-y", "@executeautomation/playwright-mcp-server"],
"des" : "run 'npx playwright install' first",
"link": "https://github.com/executeautomation/mcp-playwright"
2025-03-21 17:31:29 +08:00
},
"windows-cli": {
"command": "npx",
2025-03-24 10:28:48 +08:00
"args": ["-y", "@simonb97/server-win-cli"],
"link": "https://github.com/SimonB97/win-cli-mcp-server"
},
"sse-mcp-server": {
"url": "http://localhost:8080/sse",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"des": "使用SSE传输模式(默认)"
},
"streamable-http-mcp-server": {
"url": "http://localhost:8000/mcp",
"transport": "streamable-http",
"headers": {
"Authorization": "Bearer YOUR TOKEN"
},
"des": "使用Streamable HTTP传输模式,适用于生产环境的Web部署"
2025-03-20 18:20:50 +08:00
}
}
}