hermes-atlas-mcp
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-atlas-mcpSearch Hermes Atlas for memory providers"
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-atlas-mcp
MCP server exposing the Hermes Atlas ecosystem catalog — 100+ community-built tools, skills, plugins, memory providers, workspaces, and integrations for Nous Research's Hermes Agent — to any MCP-aware client (Claude Desktop, Cursor, Continue, Windsurf, etc.).
Ask your AI assistant things like:
"Search Hermes Atlas for memory providers"
"What does the hermes-atlas catalog say about the hermes-agent project?"
"List the top skills for Hermes Agent"
"Get the Hermes beginner's guide"
"Ask the atlas: what's the difference between Hermes Agent and Claude Code?"
All catalog data is fetched live from hermesatlas.com (cached in-memory for 1 hour), so tool answers reflect the current ecosystem, not a stale snapshot.
Status: 0.x, experimental. Breaking changes may happen before 1.0. Batch releases weekly.
Install
Recommended — one command
npx -y hermes-atlas-mcp install --client claude-desktopReplace claude-desktop with cursor or claude-code as needed. The installer finds the right config file for your OS, merges in the hermes-atlas entry without touching your other MCP servers, and tells you what to do next.
Other flags:
--print— dry-run (shows the diff, writes nothing)--force— overwrite an existinghermes-atlasentry without prompting
To remove:
npx -y hermes-atlas-mcp uninstall --client claude-desktopFully quit and reopen the client after either command (closing the window isn't enough — the process needs to restart).
Manual install (if the installer won't work)
Claude Desktop
Find the config file:
Easiest: open Claude Desktop, go to Settings → Developer → Edit Config. The file opens in your default editor.
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
Paste this (if the file is empty or doesn't exist) or merge the hermes-atlas entry into your existing mcpServers object:
{
"mcpServers": {
"hermes-atlas": {
"command": "npx",
"args": ["-y", "hermes-atlas-mcp"]
}
}
}Save. Fully quit Claude Desktop and reopen. The five tools appear in the tool picker.
Cursor
File: ~/.cursor/mcp.json (global) or .cursor/mcp.json (per-project). Same JSON snippet as above.
Claude Code
Either use the installer above, or run /mcp inside Claude Code and add through its UI, or hand-edit ~/.claude.json.
From source
git clone https://github.com/ksimback/hermes-atlas-mcp.git
cd hermes-atlas-mcp
npm install
npm run build
node dist/index.js # stdio server, pipe JSON-RPC to testRelated MCP server: agentalmanac-mcp
Tools
Tool | What it does |
| Ranked keyword search over the catalog. Optional |
| Full summary + metadata + URL for one |
| Ranked projects in one of the six curated lists. |
| Full text of the beginner's guide, install guide, or vs-Claude-Code comparison. |
| Free-form RAG question routed to the site's |
Resources
URI | Content |
| Full catalog JSON |
| AI-generated summaries JSON |
| Curated lists JSON |
|
|
Development
npm install
npm run dev # tsc --watch
npm run build # tsc
npm start # runs dist/index.js on stdioLicense
MIT © Kevin Simback. Catalog data is CC0.
Related
hermesatlas.com — the live site
ksimback/hermes-ecosystem — the source repo behind the site
Hermes Agent — the agent this ecosystem is built around
Available Tools
5 toolsask_atlasAsk Hermes Atlas (free-form RAG)A
Ask a free-form natural-language question about the Hermes Agent ecosystem. Delegates to the Hermes Atlas RAG endpoint which searches across repos, summaries, guides, and the ECOSYSTEM.md overview, then returns a cited answer. Good for questions like 'What's the best memory provider for production?' or 'How does Hermes compare to Claude Code?'.
| Name | Required | Description | Default |
|---|---|---|---|
| question | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description fully discloses the tool's behavior: it delegates to the Hermes Atlas RAG endpoint, searches across specific sources (repos, summaries, guides, ECOSYSTEM.md), and returns a cited answer. This gives the agent a clear mental model of what occurs when invoked.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences long, front-loaded with the core purpose, and each sentence adds value. The first states what it does, the second gives examples and the return format. No unnecessary filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter tool with no output schema, the description is complete. It explains the input, the process, the sources searched, and the output (cited answer), making it sufficient for an agent to decide when and how to use it.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema only defines 'question' as a string with no description. The description compensates by explaining the parameter's purpose ('free-form natural-language question') and supplying example questions that illustrate the expected format and content.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: 'Ask a free-form natural-language question about the Hermes Agent ecosystem.' It further distinguishes itself by mentioning the RAG endpoint and cited answers, clearly separating it from sibling tools like search_projects or get_guide.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context by stating it is for free-form natural-language questions and gives two concrete examples. However, it does not explicitly exclude sibling tools or state when to prefer alternatives, only implying usage through the question format.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_guideGet Hermes Handbook guide pageA
Fetch the full text of a Hermes Handbook guide page. Args: slug — one of 'hub' (beginner's guide at /guide/), 'install' (/guide/install/), or 'vs-claude-code' (/guide/vs-claude-code/). Any other slug returns an error.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and discloses key behaviors: it returns full text, accepts only three specific slugs, and errors on invalid slugs. It does not mention non-mutability explicitly, but 'fetch' strongly implies a read-only operation, which is sufficient for this tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with the primary purpose stated first, followed by a compact parameter breakdown. Every word contributes value, and the structure is easy to parse for an agent.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple single-parameter fetch tool, the description covers the purpose, accepted inputs, and error behavior completely. The absence of an output schema is mitigated by the phrase 'full text,' which sufficiently conveys the return value.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema only defines slug as a string with no enum, so the description provides essential semantics by listing the exact allowed values and their corresponding URLs. It also clarifies the error condition for invalid slugs, greatly aiding correct invocation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it fetches the full text of a Hermes Handbook guide page, with a specific verb and resource. It enumerates the exact valid slug values, which distinguishes it from sibling tools like get_project and search_projects.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for usage by listing all accepted slug values and noting that any other slug returns an error. It does not explicitly mention alternatives, but the allowed values and error behavior make the usage unambiguous for this simple fetch operation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_projectGet Hermes Atlas project detailsA
Get the full summary, metadata, and canonical URL for a specific Hermes ecosystem project. Args: owner (GitHub owner, e.g. 'NousResearch'), repo (GitHub repo name, e.g. 'hermes-agent').
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | ||
| owner | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of behavioral disclosure. It mentions the return payload (summary, metadata, canonical URL), which is useful. However, it does not disclose potential error cases, authentication requirements, or any side effects, though the read-only nature is evident from the verb 'Get.' This is minimal but acceptable for a simple lookup tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is remarkably concise: one sentence for purpose and one sentence for parameters. Every word adds value, and the structure front-loads the main function before detailing arguments.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a straightforward get-by-identifier tool with no output schema, the description adequately covers the return value and required inputs. It does not explain usage context relative to sibling tools, but the core information needed to invoke the tool correctly is present. Given the simplicity, this is sufficiently complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description fully explains both parameters with concrete examples: 'owner (GitHub owner, e.g. 'NousResearch')' and 'repo (GitHub repo name, e.g. 'hermes-agent').' Since schema description coverage is 0%, these clarifications are essential and completely compensate for the missing schema-level descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Get the full summary, metadata, and canonical URL for a specific Hermes ecosystem project.' The verb 'Get' and the resource 'specific Hermes ecosystem project' are unambiguous. It also distinguishes from sibling tools like search_projects and list_by_category by focusing on a single project identified by owner/repo.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage is implied through the required parameters (owner and repo), suggesting the tool is for when you already know the exact project. However, there is no explicit mention of when not to use it or alternatives like search_projects for discovering projects, so it stops at implied usage rather than providing clear exclusions or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_by_categoryList Hermes Atlas projects by curated listA
Return the ranked list of projects in a Hermes Atlas curated list. Valid slug values: 'best-memory-providers' | 'top-skills' | 'deployment-options' | 'multi-agent-frameworks' | 'developer-tools' | 'workspaces-and-guis'.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It discloses that the output is a 'ranked list' and enumerates valid slugs, but it does not explicitly state read-only behavior, error handling, or return format. For a simple read operation, the implied behavior is adequate but not richly detailed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that states the action and then lists valid inputs. It is front-loaded, contains no fluff, and every element earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one parameter, no output schema, read operation), the description is complete: it explains what the tool does, what the accepted inputs are, and what kind of output to expect ('ranked list of projects'). No essential information is missing for an agent to select and invoke it.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description must compensate. It adds meaning by defining the 'slug' parameter as a curated list identifier and enumerating all valid values. This provides sufficient semantic grounding despite the lack of schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Return') and identifies the resource ('ranked list of projects in a Hermes Atlas curated list'), clearly distinguishing itself from sibling tools like search_projects and get_project. The scope is well-defined by the enumerated slug values.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context on when to use the tool by listing valid slug values, which implies usage when one of those curated categories is needed. It does not explicitly state alternatives or exclusions, but the context is clear enough for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_projectsSearch Hermes Atlas projectsA
Search the Hermes Atlas catalog of 100+ community-built Hermes Agent tools, skills, plugins, memory providers, workspaces, and integrations. Query can be natural language ('memory providers', 'telegram bot', 'vscode plugin'). Optional category filter: 'Core & Official' | 'Workspaces & GUIs' | 'Memory & Context' | 'Skills & Skill Registries' | 'Plugins & Extensions' | 'Integrations & Bridges' | 'Multi-Agent & Orchestration' | 'Developer Tools' | 'Deployment & Infra' | 'Domain Applications' | 'Guides & Docs' | 'Forks & Derivatives'. Optional limit (1-50, default 10).
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | ||
| category | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses the scope (100+ community-built items), that queries can be natural language, and lists all category filter options. It does not describe the return format or ordering, but it provides substantial behavioral context that goes beyond the schema, such as what the category values are and the default limit.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise but complete, front-loading the purpose then providing examples and parameter details. The category list is long but necessary, and every sentence adds value. It is well-structured and not verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the essential context: what the catalog contains, how queries work, and all filter options. It lacks mention of the return structure (what a result looks like) but given this is a search tool and there is no output schema, it is reasonably complete. It could improve by noting that results are matching projects, but it is sufficient for a qualified agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description fully compensates by explaining every parameter: query is described with natural language and examples, category is given an explicit enum list, and limit is defined with a range (1-50) and default 10. This adds meaning well beyond the bare schema fields.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: searching the Hermes Atlas catalog of 100+ community-built tools, skills, plugins, etc. It uses a specific verb ('Search') and identifies the resource ('Hermes Atlas catalog'), distinguishing it from siblings like get_project or list_by_category by emphasizing natural language querying across multiple project types.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context: it explains natural language queries, optional category filters, and a limit. It implies use for broad catalog searches but does not explicitly contrast with sibling tools like list_by_category or get_guide. It offers examples of queries and enumerates filter values, but no exclusionary guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
5 tool updates
v0.2.0- First observed
ask_atlas - First observed
get_guide - First observed
get_project - First observed
list_by_category - First observed
search_projects
TDQS
Scored across 5 tools
Tools are mostly distinct: search_projects returns a list of projects, get_project returns one project, list_by_category returns from a curated list, get_guide fetches a guide page, and ask_atlas gives a cited answer. The only potential confusion is between search_projects and ask_atlas, but their descriptions clarify the different output types.
All tool names follow a consistent verb_noun pattern in lowercase snake_case (search_, get_, list_, get_, ask_). This is a perfectly uniform naming scheme with no deviations.
Five tools is an appropriate, focused scope for a catalog/atlas server. Each tool covers a distinct need: search, specific lookup, category browsing, guide retrieval, and open-ended Q&A. No bloat or unnecessary duplication.
For a read-only catalog, the surface covers search, detailed retrieval, curated lists, guides, and free-form questions. Minor gaps exist: no tool to list all projects in the catalog or fetch the full ECOSYSTEM.md, and the guide access is limited to three fixed slugs, but these are workable limitations.
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
Capability registry for the agentic economy. Semantic search over verified MCP server listings.
- UnifAPIOAuthcom.unifapi
Hosted MCP server for live public-data APIs and Skills for AI agents.
Search and discover Agent Skills from the skills.sh registry. Powered by HAPI MCP server.
Self-hostable team wiki; agents read & write it via MCP; Atlas turns your repo into a cited wiki.
Related MCP Servers
- FlicenseNot gradedqualityNot gradedmaintenanceEnables users to search and discover over 500 AI agent endpoints and x402 APIs directly from MCP-compatible clients like Claude and Cursor. It provides tools to query endpoints by keyword, category, or capability while offering access to detailed provider statistics.-
- AlicenseAqualityDmaintenanceEnables searching and retrieving details of 9,000+ MCP servers from the Agent Almanac catalog, allowing agents to discover, inspect, and install tools directly.325MIT
- AlicenseNot gradedqualityCmaintenanceBridges MCP-compatible AI clients to over 100 Hermes Agent skills for web browsing, file management, code execution, GitHub operations, and more.1MIT
- AlicenseAqualityDmaintenanceEnables AI agents to search, browse, and recommend tools from the Hermes Agent ecosystem directory with zero configuration.85MIT