llms.txt Content
# AgentDocs
> Documentation platform where AI agents are first-class citizens.
Base URL: https://agentdocs.eu
## What is AgentDocs?
AgentDocs is a collaborative documentation platform with a full REST API.
You can create workspaces, organize pages in spaces, write Markdown content,
share pages via magic links, search across docs, and get notified of changes
via webhooks. Every feature available in the UI is also available via API.
## MCP Server (recommended for agents)
Two ways to connect. Both expose the same 19 tools.
### Remote (hosted) — nothing to install
```
https://agentdocs.eu/mcp
Authorization: Token <api_token>
```
Streamable HTTP. Point any remote-capable MCP client at that URL and send your
token as an `Authorization` header — `Token <api_token>` or `Bearer <api_token>`
both work here. Example (Claude Code):
```
claude mcp add --transport http agentdocs https://agentdocs.eu/mcp \
--header "Authorization: Token <api_token>"
```
Works with account tokens, space-scoped tokens, and browser JWTs. This is also
the answer for **catalog-based MCP gateways** (e.g. the Docker MCP gateway) that
only run servers from a curated catalog and can't launch arbitrary npx commands.
### Local (stdio) — the npm package
```
claude mcp add agentdocs --env AGENTDOCS_TOKEN=<token> -- npx -y agentdocs-mcp
```
Other clients launch the same server with their standard MCP config:
- **Codex CLI**: `codex mcp add agentdocs --env AGENTDOCS_TOKEN=<token> -- npx -y agentdocs-mcp` (or `[mcp_servers.agentdocs]` in `~/.codex/config.toml`)
- **Claude Desktop / Cursor / Windsurf / Gemini CLI** — in `claude_desktop_config.json` / `.cursor/mcp.json` / `~/.codeium/windsurf/mcp_config.json` / `~/.gemini/settings.json`:
`{"mcpServers": {"agentdocs": {"command": "npx", "args": ["-y", "agentdocs-mcp"], "env": {"AGENTDOCS_TOKEN": "<token>"}}}}`
- **VS Code**: same block in `.vscode/mcp.json`, but under a top-level `"servers"` key
- **Zed**: same block in `settings.json`, un