Nyraxis AI

MCP Server

Connect your AI coding assistant to Nyraxis docs via Model Context Protocol.

MCP Server

Nyraxis exposes a Model Context Protocol (MCP) server so your AI coding assistant can query our docs directly. Get SDK usage, integration guides, and provider details without leaving your editor.

Cursor

Go to Settings > MCP Servers and add:

{
  "nyraxis-docs": {
    "url": "https://nyraxis.io/api/mcp"
  }
}

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "nyraxis-docs": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://nyraxis.io/api/mcp"]
    }
  }
}

Windsurf

Go to Settings > MCP and add:

{
  "nyraxis-docs": {
    "serverUrl": "https://nyraxis.io/api/mcp"
  }
}

VS Code (Copilot Chat)

Add to .vscode/mcp.json in your project:

{
  "servers": {
    "nyraxis-docs": {
      "url": "https://nyraxis.io/api/mcp"
    }
  }
}

Cline

Add to Cline MCP settings:

{
  "mcpServers": {
    "nyraxis-docs": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://nyraxis.io/api/mcp"]
    }
  }
}

Available Tools

ToolDescription
search_docsSearch all docs by keyword
get_integrationGet full guide for a specific integration (e.g. langchain, openai)
get_providerGet governance provider details (e.g. pii-detection, jailbreak)
get_sdkGet Python or Node.js SDK reference
list_integrationsList all 25 available integrations
get_quickstartGet the 5-minute quickstart guide

Example Usage

Once connected, ask your AI assistant:

  • "How do I integrate Nyraxis with LangChain?"
  • "What PII entities does Nyraxis detect?"
  • "Show me the Python SDK auto-enforce setup"
  • "List all Nyraxis integrations"

Your assistant will call the MCP tools and return the relevant docs inline.

On this page