Hermes Docs MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Hermes Docs MCP ServerSearch the docs for how MCP auth works."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Hermes Docs MCP Server
Search, navigate, and read the complete Hermes Agent documentation — from within any MCP client, including Hermes itself.
No more switching tabs. No more stale knowledge. Add one line to your ~/.hermes/config.yaml and your agent can search its own docs in two tool calls.
Quick Start
# Install
pip install -e .
# Build the doc index
python -m server.hermes_docs_server rebuild
# Add to Hermes config (~/.hermes/config.yaml)
mcp_servers:
hermes-docs:
command: "python"
args: ["-m", "server.hermes_docs_server"]
tools: true
prompts: false
resources: falseRestart Hermes and ask: "Search the docs for how MCP auth works."
Related MCP server: docs-mcp
Why?
Hermes Agent's documentation lives at hermes-agent.nousresearch.com/docs — a well-structured Docusaurus site. But the agent can't natively search it. You either:
Open a browser tab and search manually
Ask the agent (which uses its training data — may be stale or imprecise)
Hermes Docs MCP Server fixes this. It indexes the docs into a local SQLite FTS5 database and exposes structured tools. The agent fetches current documentation, with snippets and full page content, every time.
Tools
Tool | Description |
| FTS5 full-text search across all documentation |
| Read a full doc page by URL slug |
| Browse documentation structure |
| List pages within a section |
| Index statistics |
Requirements
Python 3.10+
MCP SDK (
pip install mcp)httpx(for index building —pip install httpx)
Architecture
hermes-docs-mcp-server/
├── server/
│ └── hermes_docs_server.py # MCP server (FastMCP-compatible) + SQLite FTS5 index
├── scripts/
│ └── fetch_hermes_docs.py # Doc indexer: scrapes live site OR reads local repo
├── SKILL.md # Hermes optional-skill definition
├── README.md
└── pyproject.tomlIndex Management
Live index:
python -m server.hermes_docs_server rebuild— scrapes the Hermes docs siteFrom repo:
python -m scripts.fetch_hermes_docs --repo /path/to/hermes-agent— builds from a local checkoutCustom path: set
HERMES_DOCS_INDEX_PATHenv var
The index uses sqlite3 FTS5 (stdlib) — zero external search infrastructure.
License
MIT — same as Hermes Agent. The indexed documentation is from the Hermes Agent repo (MIT).
Author
Joerg Peetz — part of the Hermes Agent growth and contribution initiative.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Read-only MCP server for the OrchestKit docs: full-text search + Markdown fetch. No auth.
AgentDocs (agentdocs.eu) MCP: read, search, write, comment, share & attach images to Markdown docs.
Agentic search over your Dewey document collections from any MCP-compatible client.
Team docs served to AI agents over MCP - search, Markdown reads, version pinning, read audit.
Related MCP Servers
- FlicenseAqualityDmaintenanceProvides AI assistants with real-time access to the AGNO framework documentation by enabling them to browse, search, and fetch documentation pages. This server allows users to query information about AGNO's Agents, Teams, and Workflows directly through MCP-compatible clients.16-
- FlicenseNot gradedqualityDmaintenanceIndexes documentation sites by base URL and serves keyword search, optional semantic search, and Markdown page retrieval as MCP tools, all from a single SQLite file.-
- AlicenseNot gradedqualityCmaintenanceEnables MCP clients to access and read mdbook documentation, including structure, content, and search.203MIT
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to search, read, and traverse documentation bundles in Open Knowledge Format via MCP tools.56168MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/JPeetz/hermes-docs-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server