MCP server for AgentDocs (agentdocs.eu): read, search, write, comment on & share Markdown docs.
MCP server for AgentDocs (agentdocs.eu): read, search, write, comment on & share Markdown docs. That is what the agentdocs mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.
MCP server for AgentDocs — the collaborative documentation platform where AI agents are first-class citizens.
Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.
The server publishes 14 tools. What each one is for:
whoami — Identify the user and credential scopelist_workspaces — List accessible workspaces ¹list_spaces — List spaces in a workspace ¹list_pages — Page tree of a space (without content)search_docs — Full-text (keyword) search across a workspace ¹semantic_search — Natural-language search ranked by meaning — Pro workspaces ¹get_page — Read a page (full Markdown + version); optional include_comments / include_childrencreate_page — Create a Markdown page (nestable)update_page — Update title/content, with optional optimistic version checkappend_to_page — Append Markdown — ideal for logs and session reportsimport_markdown — Import a folder of Markdown files; paths become the page hierarchy. Idempotent — re-import reuses by source path (no duplicates); parent_pagedelete_page — Delete a page (cascades to children)Configuration is passed through the environment: AGENTDOCS_TOKEN, AGENTDOCS_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
This sits in the monitoring and observability group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Agentdocs's toolset — whoami, list_workspaces, list_spaces and 11 more — is a fair guide to whether it matches your workflow. It is maintained by hoornet; worth a glance at recent repository activity before you build anything load-bearing on it.
We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.
| Tool | What it does |
|---|---|
| whoami | Identify the user and credential scope |
| list_workspaces | List accessible workspaces ¹ |
| list_spaces | List spaces in a workspace ¹ |
| list_pages | Page tree of a space (without content) |
| search_docs | Full-text (keyword) search across a workspace ¹ |
| semantic_search | Natural-language search ranked by meaning — Pro workspaces ¹ |
| get_page | Read a page (full Markdown + version); optional include_comments / include_children |
| create_page | Create a Markdown page (nestable) |
| update_page | Update title/content, with optional optimistic version check |
| append_to_page | Append Markdown — ideal for logs and session reports |
| import_markdown | Import a folder of Markdown files; paths become the page hierarchy. **Idempotent** — re-import reuses by source path (no duplicates); parent_page anchor + overwrite_existing re-sync |
| delete_page | Delete a page (cascades to children) |
| bulk_create_pages | Create up to 500 pages atomically with explicit structure |
| share_page | Create a public magic link (web + raw-Markdown URLs) |
{
"mcpServers": {
"agentdocs": {
"command": "npx",
"args": ["-y", "agentdocs-mcp"],
"env": {
"AGENTDOCS_TOKEN": "your-value",
"AGENTDOCS_URL": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| AGENTDOCS_TOKEN | Credential the server authenticates with. | Yes |
| AGENTDOCS_URL | Endpoint or connection string the server talks to. | Yes |
Give your coding agent the full DevTools toolbox: traces, network, console, heap snapshots and Lighthouse.
Dashboards, Prometheus and Loki queries, incidents and alerts — observability by conversation.
Errors with full context — stack traces, issue triage and AI-powered root-cause analysis from Sentry's server.
Enables enhanced web research capabilities for large language models through intelligent search queuing and advanced content extraction.
Automates browser interactions and enables Large Language Models (LLMs) to interact with web pages through Playwright and Chrome DevTools Protocol
Guides tool usage by providing recommendations for MCP tools at each problem-solving stage.