【技术文档摘要】:

用于NOSIBLE 搜索 API的MCP服务器。 使用NOSIBLE 客户端包。
登录NOSIBLE并获取您的API密钥
在VSCode中使用
.vscode/mcp.json文件。{
"servers": {
"nosible-mcp": {
"type": "http",
"url": "https://nosible-mcp.onrender.com/mcp/",
"headers": {
"X-Nosible-Api-Key": "YOUR_NOSIBLE_API_KEY_HERE"
}
}
}
}
设置 -> 开发者 -> 编辑配置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 设置 -> MCP & 集成 -> 新MCP服务器{
"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