> ## Documentation Index
> Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt
> Use this file to discover all available pages before exploring further.

# How to connect to the Atoti documentation MCP server

> Connection instructions for the Atoti documentation MCP server, covering Claude, Claude Code, Cursor, and VS Code with GitHub Copilot

The Atoti MCP Server is hosted at `https://docs.activeviam.com/mcp`. When connected to an AI coding agent, it enables the agent to search and retrieve documentation content directly, rather than relying on training data or generic web searches.

## Prerequisites

* An AI coding tool with MCP support, such as Claude, Claude Code, Cursor, or VS Code with GitHub Copilot
* Access to Atoti products
* An active internet connection

<Note>
  In some environments, the domain `https://docs.activeviam.com` must be added to the network allowlist before the MCP server can be reached.
</Note>

## What are the connection details?

| Setting    | Value                                                          |
| ---------- | -------------------------------------------------------------- |
| Server URL | `https://docs.activeviam.com/mcp`                              |
| Transport  | HTTP (also called "streamable HTTP" or "remote" in some tools) |

The setup steps are similar across tools: add the server URL as a remote MCP server using the tool's MCP configuration.
Refer to each tool's documentation for the specific steps:

* [Claude custom connectors](https://support.claude.com/en/articles/11175166-get-started-with-custom-connectors-using-remote-mcp)
* [Claude Code MCP](https://code.claude.com/docs/en/mcp)
* [Cursor MCP](https://cursor.com/docs/mcp)
* [VS Code MCP](https://code.visualstudio.com/docs/copilot/chat/mcp-servers)
* For other tools, consult the tool's documentation directly

In Claude Code, the server can be added directly from the terminal:

```bash theme={"languages":{"custom":["/engine/python-sdk/0.9/languages/pycon.tmLanguage.json"]}}
claude mcp add --transport http activeviam-docs https://docs.activeviam.com/mcp
```

## How to verify the connection

Once connected, ask the agent a question about Atoti products. The response should include content drawn from the Atoti documentation, such as page titles or references to docs.activeviam.com.

## What tools does the Atoti MCP Server provide?

The Atoti MCP Server exposes two tools that connected agents use automatically:

* **Search**: Searches across the documentation to find relevant content, returning snippets with titles and links. Agents use this tool to discover information or find pages matching a query.
* **Query docs filesystem**: Reads and navigates the documentation structure using shell-style commands. Agents use this tool to retrieve full page content, browse the docs structure, or extract specific sections.

These tools are designed to be used together: the Search tool finds relevant pages, and the Query docs filesystem tool retrieves their full content.

## Next steps and related reading

* [Claude custom connectors](https://support.claude.com/en/articles/11175166-get-started-with-custom-connectors-using-remote-mcp)
* [Claude Code MCP](https://code.claude.com/docs/en/mcp)
* [Cursor MCP](https://cursor.com/docs/mcp)
* [VS Code MCP](https://code.visualstudio.com/docs/copilot/chat/mcp-servers)
* [Model Context Protocol specification](https://modelcontextprotocol.io)
