Agentic Integration

Connect the documentation to coding agents for AI Assisted Development

Introduction

This documentation is also available and searchable as a Model Context Protocol (MCP) server.

This allows AI assistants to access Neuron AI documentation content directly, making it easy for tools like Claude Code, Cursor, and VS Code extensions reliably understand what Inspector client library can do, its configurations, how to use it.

The MCP server is available at: https://docs.inspector.dev/~gitbook/mcparrow-up-right

Claude Code

claude mcp add --transport http inspector-lib-doc https://docs.inspector.dev/~gitbook/mcp

VS Code

"mcp": {
    "servers": {
        "inspector-lib-doc": {
            "type": "http",
            "url": "https://docs.inspector.dev/~gitbook/mcp"
        }
    }
}

Cursor

{
  "mcpServers": {
    "inspector-lib-doc": {
        "url": "https://docs.inspector.dev/~gitbook/mcp"
    }
  }
}

Windsurf

OpenCode

Last updated