Hashnet MCP Server

Universal AI Agent Discovery - search 59,000+ agents across MCP, NANDA, A2A, OpenRouter

Local serverstdioTypeScript

What is the Hashnet MCP server?

Hashnet MCP server exists for a simple reason — assistants are far more useful when they can act on Hashnet directly instead of describing what you should do. Universal AI Agent Discovery - search 59,000+ agents across MCP, NANDA, A2A, OpenRouter.

What you get

Universal MCP server for discovery, chat, registration, credits, and workflow automation across the HOL Registry Broker ecosystem.

What the assistant can call

Once Hashnet is connected, these are the calls the assistant has available:

  • Discovery — hol.stats, hol.capabilities, hol.search, hol.vectorSearch, hol.resolveUaid
  • Chat — hol.chat.readiness, hol.chat.createSession, hol.chat.sendMessage, hol.chat.retry, hol.chat.history, hol.chat.resume, hol.chat.end
  • Registration — hol.getRegistrationQuote, hol.registerAgent, hol.waitForRegistrationCompletion
  • Workflows — workflow.discovery, workflow.delegate, workflow.registration
  • data — meta
  • Surface — Link
  • Documentationhol.org/mcp
  • CodeSandboxOpen examples in browser
  • Transport — Endpoint(s)
  • stdio — process stdin/stdout
  • Variable — Required
  • REGISTRY_BROKER_API_URL — no

Configuration and credentials

You will need 6 environment variables: REGISTRY_BROKER_API_URL, REGISTRY_BROKER_API_KEY, MCP_SERVER_BEARER_TOKEN, LEDGER_ACCOUNT_ID, HEDERA_ACCOUNT_ID, HEDERA_PRIVATE_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Setting it up

Installation goes through your MCP client rather than a global install: point it at @hol-org/hashnet-mcp on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Choosing this one

Among the browser automation options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Hashnet's toolset — Discovery, Chat, Registration and 11 more — is a fair guide to whether it matches your workflow. It is maintained by hashgraph-online; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Hashnet.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the hashnet mcp server does with a few real requests.

Available tools

ToolWhat it does
Discoveryhol.stats, hol.capabilities, hol.search, hol.vectorSearch, hol.resolveUaid
Chathol.chat.readiness, hol.chat.createSession, hol.chat.sendMessage, hol.chat.retry, hol.chat.history, hol.chat.resume, hol.chat.end
Registrationhol.getRegistrationQuote, hol.registerAgent, hol.waitForRegistrationCompletion
Workflowsworkflow.discovery, workflow.delegate, workflow.registration
datameta
SurfaceLink
Documentation[hol.org/mcp](https://hol.org/mcp)
CodeSandbox[Open examples in browser](https://codesandbox.io/p/sandbox/github/hashgraph-online/hashnet-mcp-js/tree/master)
TransportEndpoint(s)
stdioprocess stdin/stdout
VariableRequired
REGISTRY_BROKER_API_URLno
REGISTRY_BROKER_API_KEYno
BROKER_REQUEST_TIMEOUT_MSno

How to install the Hashnet MCP server

{
  "mcpServers": {
    "hashnet": {
      "command": "npx",
      "args": ["-y", "@hol-org/hashnet-mcp"],
      "env": {
        "REGISTRY_BROKER_API_URL": "your-value",
        "REGISTRY_BROKER_API_KEY": "your-value",
        "MCP_SERVER_BEARER_TOKEN": "your-value",
        "LEDGER_ACCOUNT_ID": "your-value",
        "HEDERA_ACCOUNT_ID": "your-value",
        "HEDERA_PRIVATE_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
REGISTRY_BROKER_API_URLEndpoint or connection string the server talks to.Yes
REGISTRY_BROKER_API_KEYCredential the server authenticates with.Yes
MCP_SERVER_BEARER_TOKENCredential the server authenticates with.Yes
LEDGER_ACCOUNT_IDConfiguration value read at startup.Optional
HEDERA_ACCOUNT_IDConfiguration value read at startup.Optional
HEDERA_PRIVATE_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Hashnet to Discovery.
  • Use Hashnet to Chat.
  • Use Hashnet to Registration.

Frequently asked questions

It connects Hashnet to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Discovery, Chat, Registration, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Hashnet directly.