mirror of
https://github.com/FuQuan233/nonebot-plugin-llmchat.git
synced 2026-02-05 03:28:05 +00:00
📘 更新 README
This commit is contained in:
parent
0943b7077f
commit
8f7adbd176
1 changed files with 51 additions and 33 deletions
38
README.md
38
README.md
|
|
@ -196,23 +196,41 @@ LLMCHAT__MCP_SERVERS同样为一个dict,key为服务器名称,value配置的
|
||||||
"support_image": true
|
"support_image": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
'
|
||||||
LLMCHAT__MCP_SERVERS='
|
LLMCHAT__MCP_SERVERS='
|
||||||
{
|
{
|
||||||
"AISearch": {
|
"brave-search": {
|
||||||
"friendly_name": "百度搜索",
|
"friendly_name": "Brave搜索",
|
||||||
"additional_prompt": "遇到你不知道的问题或者时效性比较强的问题时,可以使用AISearch搜索,在使用AISearch时不要使用其他AI模型。",
|
"additional_prompt": "遇到你不知道的问题或者时效性比较强的问题时,请使用brave-search搜索。",
|
||||||
"url": "http://appbuilder.baidu.com/v2/ai_search/mcp/sse?api_key=Bearer+<your-api-key>",
|
"command": "npx",
|
||||||
"headers": {
|
"args": ["-y", "@modelcontextprotocol/server-brave-search"],
|
||||||
"Authorization": "<some-api-key>"
|
"env": {
|
||||||
|
"BRAVE_API_KEY": "<your-api-key>"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"fetch": {
|
"fetch": {
|
||||||
"friendly_name": "网页浏览",
|
"friendly_name": "浏览网页",
|
||||||
|
"additional_prompt": "搜索到的链接可以通过fetch打开进一步了解。",
|
||||||
"command": "uvx",
|
"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>
|
</details>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue