MCP Server
The NOSIBLE Search API can be used through an MCP server.
Usage
Log on to NOSIBLE and retrieve your API key.
Using with VSCode
Create a
.vscode/mcp.jsonfile in your workspace.Select the
Add Serverbutton to add a template with your own API key for a new server. It should look like this:
{ "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 configOpen
claude_desktop_config.jsonand add the following code below, including your API key.
{ "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 ServerAdd this template below, with your own API key.
{ "mcpServers": { "nosible-demo": { "type": "http", "url": "https://nosible-mcp.onrender.com/mcp/", "headers": { "X-Nosible-Api-Key": "YOUR_NOSIBLE_API_KEY_HERE" } } } }