docsbook-mcp
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DOCSBOOK_MCP_URL | No | Overrides the upstream endpoint. Can be pointed at a scoped endpoint for anonymous read-only access. | https://docsbook.io/api/mcp/server |
| DOCSBOOK_MCP_TOKEN | No | Bearer token used to authenticate against the hosted Docsbook MCP server. Required for real tool calls; without it the server still starts and lists tools but tools/call returns an error. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_infoC | Server capabilities. |
| list_workspacesC | All workspaces with plan_capabilities. |
| get_workspaceA | Get a workspace by ID or owner/repo. |
| create_workspaceC | Create a workspace from a GitHub repo. |
| update_brandingB | Update colors, fonts, logo, theme. |
| update_ui_settingsC | Show/hide UI components. |
| update_navigationB | Update header/social/folder links. |
| update_ai_settingsC | Update AI provider settings (PRO plan or higher; BYO key/model is Business-only). |
| search_docsC | Full-text/semantic search over doc content. |
| write_docsA | Create/edit doc content. Requires an MCP token with read_write scope; read-only tokens are rejected. |
| update_seoB | Update meta, OpenGraph, JSON-LD, sitemap (PRO plan or higher). |
| update_geoB | Update TL;DR, dateModified, Person/Author markup (PRO plan or higher). |
| update_aeoB | Update FAQPage, HowTo, speakable markup (PRO plan or higher). |
| update_domainC | Custom domain setup (Business plan). |
| update_languagesB | Enable languages for translation (PRO plan or higher). |
| get_doc_graphA | Get the Source of Truth doc graph (format toon/json). PRO+ plan. |
| read_doc_sectionsB | Read sections from the doc graph. PRO+ plan. |
| reindex_doc_graphA | Reindex the Source of Truth doc graph (100/mo limit). PRO+ plan. |
| doc_outlineC | Get the outline/structure of a doc page. PRO+ plan. |
| doc_breadcrumbsC | Get breadcrumbs for a doc page. PRO+ plan. |
| doc_neighborsA | Get neighboring pages in the doc graph. PRO+ plan. |
| doc_list_pagesB | List all doc pages. PRO+ plan. |
| doc_search_symbolsC | Fuzzy symbol search (e.g. 'oaf' -> 'OAuth flow'). PRO+ plan. |
| doc_search_textB | Ranked full-text search with snippets and line/col positions. PRO+ plan. |
| doc_grepC | Regex search over doc content. PRO+ plan. |
| doc_search_pathsB | Glob search over doc paths. PRO+ plan. |
| doc_search_by_anchorC | Search doc sections by anchor. PRO+ plan. |
| doc_search_links_toB | Find links pointing to a given doc/page. PRO+ plan. |
| doc_search_links_fromB | Find links originating from a given doc/page. PRO+ plan. |
| doc_search_unresolvedB | Find unresolved links in the doc graph. PRO+ plan. |
| doc_search_orphansA | Find orphaned pages with no incoming links. PRO+ plan. |
| doc_resolve_linkB | Resolve a doc link to its GitHub URL. PRO+ plan. |
| doc_definitionB | Go-to-definition for a doc symbol. PRO+ plan. |
| doc_hoverC | Hover info for a doc symbol. PRO+ plan. |
| doc_canonical_refA | Get the canonical reference for a doc symbol. PRO+ plan. |
| get_chat_system_promptA | Get the AI chat system prompt. PRO+ plan. |
| set_chat_system_promptB | Set the AI chat system prompt. PRO+ plan. |
| set_chat_hooksB | Configure AI chat hooks. PRO+ plan. |
| test_chat_hookB | Test an AI chat hook. PRO+ plan. |
| list_pending_translationsA | List pending translations. PRO plan or higher. |
| get_translationC | Get a translation. PRO plan or higher. |
| set_translation_modeC | Set translation mode. PRO+ plan. |
| upload_translationB | Upload a translation. PRO+ plan. |
| approve_translationC | Approve a translation. PRO+ plan. |
| delete_translationB | Delete a translation. PRO+ plan. |
| get_analyticsC | Views, visitors, top pages, referrers. |
| get_ai_usageC | AI/translation usage and limits. |
| get_ai_questionsC | All AI chat questions. PRO plan or higher. |
| get_ai_unansweredC | Questions the AI chat couldn't answer. PRO plan or higher. |
| get_negative_feedbackC | Pages with negative feedback. PRO plan or higher. |
| get_failed_searchesC | No-result search queries. PRO plan or higher. |
| get_popular_searchesC | Top search queries. PRO plan or higher. |
| get_page_journeysD | User navigation paths. PRO+ plan. |
| get_top_visitorsC | Top anonymous visitors with drill-down. PRO+ plan. |
| get_visitor_activityC | Timeline of activity for one visitor. PRO+ plan. |
| query_eventsD | Raw analytics events query. PRO+ plan. |
| list_webhooksB | List registered webhooks (Business plan). |
| unregister_webhookC | Unregister a webhook (Business plan). |
| list_webhook_deliveriesA | List webhook deliveries (Business plan). |
| replay_webhook_deliveryC | Replay a webhook delivery (Business plan). |
| test_webhookB | Send a test webhook delivery (Business plan). |
| find_skillA | Find a SKILL.md by query and filters, returning a raw_url. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 62 tools
Most tools are clearly distinct, but the doc_search_* family (doc_search_text, doc_grep, doc_search_paths, doc_search_by_anchor) and the general search_docs overlap in function, which could cause misselection. The analytics and workspace tools are well-separated.
The majority of tools follow a clear verb_noun pattern (get_, list_, update_, create_, delete_, set_, test_). However, the doc_* tools (doc_outline, doc_breadcrumbs, doc_neighbors) deviate by using a prefix instead of a leading verb, though they remain readable and predictable.
62 tools is extreme for an MCP server. Even for a feature-rich documentation platform, this exceeds reasonable scope and will overwhelm agents with too many options, making selection harder.
The tool set covers many features but has significant gaps: no delete_workspace, no delete_doc, no register_webhook (only unregister), and no general list_translations (only pending). These missing lifecycle operations create dead ends and prevent full workflows.