Integrations

Works with your tools

Neuledge Context is an MCP server — it works with any AI coding assistant that supports the Model Context Protocol. Set up once, get accurate docs everywhere.

Claude Code

Anthropic's CLI for Claude. Add Context as an MCP server with a single command.

1. Add the MCP server

$ claude mcp add context -- npx @neuledge/context mcp

2. Add docs for your project's libraries

$ npx @neuledge/context add https://github.com/vercel/next.js

That's it. Claude Code now has sub-10ms access to accurate, version-specific docs for every library you index.

Claude Desktop

Anthropic's desktop app. Add Context via the MCP settings file.

claude_desktop_config.json

{
  "mcpServers": {
    "context": {
      "command": "npx",
      "args": ["@neuledge/context", "mcp"]
    }
  }
}

On macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%\Claude\claude_desktop_config.json

Cursor

AI-native code editor. Add Context through the MCP settings in your project or global config.

.cursor/mcp.json

{
  "mcpServers": {
    "context": {
      "command": "npx",
      "args": ["@neuledge/context", "mcp"]
    }
  }
}

Place the config at .cursor/mcp.json in your project root for per-project setup, or in your home directory for global configuration.

VS Code / Copilot

GitHub Copilot in VS Code supports MCP servers. Add Context through your VS Code settings.

.vscode/settings.json

{
  "mcp": {
    "servers": {
      "context": {
        "command": "npx",
        "args": ["@neuledge/context", "mcp"]
      }
    }
  }
}

Requires VS Code 1.99+ with GitHub Copilot extension. MCP support is available in Copilot Chat's Agent mode.

Windsurf

Codeium's AI IDE. Configure Context through the MCP settings file.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "context": {
      "command": "npx",
      "args": ["@neuledge/context", "mcp"]
    }
  }
}

Any MCP Client

Context works with any client that supports the Model Context Protocol — the open standard backed by Anthropic, OpenAI, Google, and Microsoft.

To integrate with any MCP client, point it at the Context MCP server:

Command:

npx @neuledge/context mcp

Transport:

stdio

Tools provided:

resolveSearch indexed documentation by query

Check your client's documentation for how to configure MCP servers. Most clients accept a JSON config with command and args fields.

Get started

Install Context, index your docs, and connect to your editor. Full setup guide in the docs.