📘 更新 README

This commit is contained in:
FuQuan233 2025-11-01 23:31:22 +08:00
parent 0943b7077f
commit 8f7adbd176

View file

@ -196,23 +196,41 @@ LLMCHAT__MCP_SERVERS同样为一个dictkey为服务器名称value配置的
"support_image": true
}
]
'
LLMCHAT__MCP_SERVERS='
{
"AISearch": {
"friendly_name": "百度搜索",
"additional_prompt": "遇到你不知道的问题或者时效性比较强的问题时可以使用AISearch搜索在使用AISearch时不要使用其他AI模型。",
"url": "http://appbuilder.baidu.com/v2/ai_search/mcp/sse?api_key=Bearer+<your-api-key>",
"headers": {
"Authorization": "<some-api-key>"
"brave-search": {
"friendly_name": "Brave搜索",
"additional_prompt": "遇到你不知道的问题或者时效性比较强的问题时请使用brave-search搜索。",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-brave-search"],
"env": {
"BRAVE_API_KEY": "<your-api-key>"
}
},
"fetch": {
"friendly_name": "网页浏览",
"friendly_name": "浏览网页",
"additional_prompt": "搜索到的链接可以通过fetch打开进一步了解。",
"command": "uvx",
"args": ["mcp-server-fetch"]
"args": ["mcp-server-fetch", "--ignore-robots-txt", "--user-agent=\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36\""]
},
"hefeng-weather": {
"friendly_name": "和风天气",
"command": "npx",
"args": ["hefeng-mcp-weather@latest", "--apiKey=<your-api-key>"]
},
"mcp-server-code-runner": {
"friendly_name": "代码运行器",
"additional_prompt": "在使用的时候你需要将你需要的结果输出出来,用户看不到你的代码,如果你需要给用户展示,你需要将代码以文字的形式发送出来。",
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"formulahendry/mcp-server-code-runner"
]
},
}
}
'
'
</details>