Nexus MCP Server

Nexus MCP server - Intelligent AI model search and discovery with OpenRouter integration

Local serverstdioTypeScript

What is the Nexus MCP server?

Nexus MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. Nexus MCP server - Intelligent AI model search and discovery with OpenRouter integration.

What you get

Nexus is a Model Context Protocol (MCP) server that provides AI-powered search functionality through the OpenRouter API. It integrates with MCP-compatible clients including Claude Desktop and Cursor, providing search capabilities via multiple model families including Perplexity Sonar (real-time web search) and Grok 4 (training-data knowledge).

What the assistant can call

Once Nexus is connected, these are the calls the assistant has available:

  • Pricing — See current rates at OpenRouter Models
  • Monitoring — Usage tracking available in OpenRouter dashboard
  • Limits — Configure spending limits in OpenRouter account settings
  • Optimization — Server implements response caching and request deduplication to minimize redundant API calls
  • Deployment — The Deployment tool exposed by this server
  • Architecture — The Architecture tool exposed by this server
  • Prerequisites — The Prerequisites tool exposed by this server
  • Cursor — The Cursor tool exposed by this server
  • search — The main search tool that provides AI-powered search capabilities

Configuration and credentials

You will need 2 environment variables: OPENROUTER_API_KEY, OPENROUTER_BASE_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Setting it up

npx on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Choosing this one

Among the monitoring and observability options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Nexus's toolset — Pricing, Monitoring, Limits and 6 more — is a fair guide to whether it matches your workflow. It is maintained by adawalli; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 9 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Nexus.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the nexus mcp server does with a few real requests.

Available tools

ToolWhat it does
PricingSee current rates at [OpenRouter Models](https://openrouter.ai/models)
MonitoringUsage tracking available in OpenRouter dashboard
LimitsConfigure spending limits in OpenRouter account settings
OptimizationServer implements response caching and request deduplication to minimize redundant API calls
DeploymentThe Deployment tool exposed by this server.
ArchitectureThe Architecture tool exposed by this server.
PrerequisitesThe Prerequisites tool exposed by this server.
CursorThe Cursor tool exposed by this server.
searchThe main search tool that provides AI-powered search capabilities.

How to install the Nexus MCP server

{
  "mcpServers": {
    "nexus": {
      "command": "npx",
      "args": ["-y", "npx"],
      "env": {
        "OPENROUTER_API_KEY": "your-value",
        "OPENROUTER_BASE_URL": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
OPENROUTER_API_KEYCredential the server authenticates with.Yes
OPENROUTER_BASE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Nexus to Pricing.
  • Use Nexus to Monitoring.
  • Use Nexus to Limits.

Frequently asked questions

It connects Nexus to MCP-compatible AI assistants such as Claude and Cursor, exposing 9 tools (Pricing, Monitoring, Limits, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Nexus directly.