返回市场
诺西布尔-mcp

诺西布尔-mcp

作者:NosibleAI2 星标更新:2025-10-16

项目介绍

【技术文档摘要】: Logo

NOSIBLE MPC 服务器

用于NOSIBLE 搜索 API的MCP服务器。 使用NOSIBLE 客户端包


使用方法:

  • 登录NOSIBLE并获取您的API密钥

  • 在VSCode中使用

    • 在工作区创建一个.vscode/mcp.json文件。
    • 选择“添加服务器”按钮,添加一个带有您自己的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中使用:
    • 前往设置 -> 开发者 -> 编辑配置
    • 打开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中使用:
    • 前往Cursor 设置 -> MCP & 集成 -> 新MCP服务器
    • 添加以下模板,包括您自己的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