open-docs-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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 | {} |
| prompts | {} |
| resources | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| enable_docC | Enable crawling for a specific doc |
| disable_docB | Disable crawling for a specific doc |
| crawl_docsC | Start crawling enabled docs |
| build_indexC | Build search index for docs |
| search_docsC | Search documentation |
| build_indexC | Build search index for docs |
| list_enabled_docsB | List all enabled docs with their cache status |
| list_all_docsA | List all available docs including disabled ones |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| summarize_notes | Summarize all notes |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| First Note | A text note: First Note |
| Second Note | A text note: Second Note |
TDQS
Scored across 7 tools
Each tool targets a distinct action: building index, crawling, enabling/disabling docs, listing with different filters, and searching. No overlap in purpose.
Most tools follow verb_noun pattern (crawl_docs, disable_doc, etc.), but there is a minor inconsistency: 'disable_doc' and 'enable_doc' use singular 'doc' while others use plural 'docs'. Overall pattern is clear.
Seven tools is well-scoped for a documentation search server. Each tool serves a necessary function without bloat or deficiency.
The set covers core lifecycle: enabling/disabling docs, listing, crawling, indexing, and searching. Missing a manual add or delete doc tool, but these may be implicit in the crawling workflow.