# Agentic Integration

#### Introduction <a href="#introduction" id="introduction"></a>

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/mcp](https://docs.neuron-ai.dev/neuron-v2/~gitbook/mcp)

#### Claude Code <a href="#claude-code" id="claude-code"></a>

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

#### VS Code <a href="#vs-code" id="vs-code"></a>

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

#### Cursor <a href="#cursor" id="cursor"></a>

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

#### Windsurf <a href="#windsurf" id="windsurf"></a>

```json
{
  "mcpServers": {
    "inspector-lib-doc": {
      "serverUrl": "https://docs.inspectori.dev/~gitbook/mcp"
    }
  }
}
```

#### OpenCode <a href="#opencode" id="opencode"></a>

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "inspector-lib-doc": {
      "type": "remote",
      "url": "https://docs.inspector.dev/~gitbook/mcp",
      "enabled": true
    }
  }
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.inspector.dev/concepts/agentic-integration.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
