
NOSIBLE MPC 服务器
用于(某系统/应用的)MCP服务器 NOSIBLE 搜索 API。 使用 NOSIBLE客户端包。
______________________________________________________________________
用法:
- 登录到 不可能 并获取您的API密钥
- 与VSCode一起使用
- 创建一个 .vscode/mcp.json 在你的工作区中找到文件。 - 选择 Add Server 按钮用于添加一个带有您自己API密钥的新服务器模板。它应该看起来像这样:
{
"servers": {
"nosible-mcp": {
"type": "http",
"url": "https://nosible-mcp.onrender.com/mcp/",
"headers": {
"X-Nosible-Api-Key": "YOUR_NOSIBLE_API_KEY_HERE"
}
}
}
}- 与Claude Desktop配合使用:
- 首选 settings -> developer -> Edit config - 打开 claude_desktop_config.json 并在下面添加以下代码,包括您的API密钥。
{
"mcpServers": {
"nosible-mcp": {
"command": "npx",
"args": [
"mcp-remote",
"https://nosible-mcp.onrender.com/mcp/",
"--header",
"X-Nosible-Api-Key:${NOSIBLE_API_KEY}"
],
"env": {
"NOSIBLE_API_KEY": "YOUR_NOSIBLE_API_KEY_HERE"
}
}
}
}- 与光标一起使用:
- 首选 Cursor Settings -> MCP & Integrtions -> New MCP Server - 在下面添加此模板,并使用您自己的API密钥。
{
"mcpServers": {
"nosible-mcp": {
"type": "http",
"url": "https://nosible-mcp.onrender.com/mcp/",
"headers": {
"X-Nosible-Api-Key": "YOUR_NOSIBLE_API_KEY_HERE"
}
}
}
}开发者使用情况
运行服务器:
python src/server.py