MCP (Docs)

This is for the Documentation MCP only. For the Netra Product see Netra MCP.

The Netra Apex Docs Model Context Protocol (MCP) server enables AI-powered code editors like Cursor and Windsurf, plus general-purpose tools like Claude Desktop, to interact directly with your Netra Apex Docs API and documentation.

What is MCP?

Model Context Protocol (MCP) is an open standard that allows AI applications to securely access external data sources and tools. The Netra Apex Docs MCP server provides AI agents with:

  • Direct API access to Netra Apex Docs functionality
  • Documentation search capabilities
  • Real-time data from your Netra Apex Docs account
  • Code generation assistance for Netra Apex Docs integrations

Netra Apex Docs MCP Server Setup

Netra Apex Docs hosts a remote MCP server at https://docs.netrasystems.ai/mcp. Configure your AI development tools to connect to this server. If your APIs require authentication, you can pass in headers via query parameters or however headers are configured in your MCP client.

Add via Chat

Open your IDE's chat window. For example for Windsurf:

Add to ~/.codeium/windsurf/mcp_config.json:

JSON

{
  "mcpServers": {
    "netra-apex": {
      "serverUrl": "https://docs.netrasystems.ai/mcp"
    }
  }
}

Add to~/.cursor/mcp.json:

{
  "mcpServers": {
    "netra-apex": {
      "serverUrl": "https://docs.netrasystems.ai/mcp"
    }
  }
}

MCP is a new and developing standard. You may need to adjust these example configuration as needed.

Testing Your MCP Setup

Once configured, you can test your MCP server connection:

  1. Open your AI editor (Cursor, Windsurf, etc.)
  2. Start a new chat with the AI assistant
  3. Ask about Netra Apex Docs - try questions like:
    • "@mcp:netra-apex: How do I [common use case]?"
    • "@mcp:netra-apex: Show me an example of [API functionality]"
    • "@mcp:netra-apex: Create a [integration type] using Netra Apex Docs"

The AI should now have access to your Netra Apex Docs account data and documentation through the MCP server.