NosibleAI/nosible-mcp
3.2
If you are the rightful owner of nosible-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The NOSIBLE MPC Server is a model context protocol server designed for the NOSIBLE Search API, facilitating seamless integration and communication with various platforms.
NOSIBLE MPC Server
MCP server for the NOSIBLE Search API. Uses the NOSIBLE client package.
Usage:
-
Log on to NOSIBLE and retrieve your API key
-
Using with VSCode
- Create a
.vscode/mcp.json
file in your workspace. - Select the
Add Server
button to add a template with your own API key for a new server. It should look like this:
- Create a
{
"servers": {
"nosible-demo": {
"type": "http",
"url": "https://nosible-mcp.onrender.com/mcp/",
"headers": {
"X-Nosible-Api-Key": "YOUR_NOSIBLE_API_KEY_HERE"
}
}
}
}
- Using with Claude Desktop:
- Go to
settings
->developer
->Edit config
- Open
claude_desktop_config.json
and add the following code below, including your API key.
- Go to
{
"mcpServers": {
"nosible-demo": {
"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"
}
}
}
}
- Using with Cursor:
- Go to
Cursor Settings
->MCP & Integrtions
->New MCP Server
- Add this template below, with your own API key.
- Go to
{
"mcpServers": {
"nosible-demo": {
"type": "http",
"url": "https://nosible-mcp.onrender.com/mcp/",
"headers": {
"X-Nosible-Api-Key": "YOUR_NOSIBLE_API_KEY_HERE"
}
}
}
}
Developer Usage
Run the server:
python src/server.py