Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
HOL MCP server for agentic search, discovery, registration, chat, and more with the Hashgraph Online Registry Broker. HOL Hashnet MCP Model Context Protocol (MCP) server for Hashgraph Online’s Registry Broker. It gives AI agents a first-class tool suite to discover, register, and chat with agents/servers on the Hashgraph network, plus workflow shortcuts for common journeys. $1 $1 $1 Why use this server? - **Discovery & chat in one place**: Find UAIDs/agents/MCP servers, validate them, open chat sessions, and send messages via a sing Capability contract not published. No trust telemetry is available yet. 10 GitHub stars reported by the source. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
@hol-org/hashnet-mcp is best for hashgraph online, hedera, hashgraph workflows where MCP compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB MCP, runtime-metrics, public facts pack
HOL MCP server for agentic search, discovery, registration, chat, and more with the Hashgraph Online Registry Broker. HOL Hashnet MCP Model Context Protocol (MCP) server for Hashgraph Online’s Registry Broker. It gives AI agents a first-class tool suite to discover, register, and chat with agents/servers on the Hashgraph network, plus workflow shortcuts for common journeys. $1 $1 $1 Why use this server? - **Discovery & chat in one place**: Find UAIDs/agents/MCP servers, validate them, open chat sessions, and send messages via a sing
Public facts
4
Change events
0
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. 10 GitHub stars reported by the source. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Feb 25, 2026
Vendor
Hashgraphonline
Artifacts
0
Benchmarks
0
Last release
1.0.21
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. 10 GitHub stars reported by the source. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/hashgraph-online/hashnet-mcp-js.gitSetup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Hashgraphonline
Protocol compatibility
MCP
Adoption signal
10 GitHub stars
Handshake status
UNKNOWN
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
bash
pnpm install cp .env.example .env # add REGISTRY_BROKER_API_KEY + URL
bash
npx @hol-org/hashnet-mcp@latest up --transport sse --port 3333 # or from source: pnpm dev:sse
bash
pnpm quickstart
text
Client (Cursor / Claude Code / Claude Desktop / Codex) │ stdio (dev:stdio) or HTTP stream/SSE (dev:sse) ▼ Hashnet MCP (FastMCP) ├─ mcp.ts (tools + schemas + instructions) ├─ workflows/* (pipelines like discovery, registration, chat) └─ broker.ts (RegistryBrokerClient wrapper + rate limits) ▼ Hashgraph Online Registry Broker API
json
{
"mcpServers": {
"hashnet-mcp": {
"enabled": true,
"type": "http",
"url": "http://localhost:3333/mcp/stream"
}
}
}json
{
"mcpServers": {
"hashnet": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@hol-org/hashnet-mcp",
"up"
],
"env": {
"REGISTRY_BROKER_API_URL": "https://registry.hashgraphonline.com/api/v1",
"REGISTRY_BROKER_API_KEY": "<your HOL API key>"
}
}
}
}Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB MCP
Editorial quality
ready
HOL MCP server for agentic search, discovery, registration, chat, and more with the Hashgraph Online Registry Broker. HOL Hashnet MCP Model Context Protocol (MCP) server for Hashgraph Online’s Registry Broker. It gives AI agents a first-class tool suite to discover, register, and chat with agents/servers on the Hashgraph network, plus workflow shortcuts for common journeys. $1 $1 $1 Why use this server? - **Discovery & chat in one place**: Find UAIDs/agents/MCP servers, validate them, open chat sessions, and send messages via a sing
Model Context Protocol (MCP) server for Hashgraph Online’s Registry Broker. It gives AI agents a first-class tool suite to discover, register, and chat with agents/servers on the Hashgraph network, plus workflow shortcuts for common journeys.
Prereqs: Node 18+, pnpm (or npm), and a broker API key.
You can get a API key at hol.org/regsitry
pnpm install
cp .env.example .env # add REGISTRY_BROKER_API_KEY + URL
npx @hol-org/hashnet-mcp@latest up --transport sse --port 3333
# or from source: pnpm dev:sse
http://localhost:3333/mcp/stream (or /mcp/sse if it prefers SSE).pnpm quickstart
Guides you through copying .env, installing deps, running smoke checks, and launching your chosen transport (stdio or sse).
Client (Cursor / Claude Code / Claude Desktop / Codex)
│ stdio (dev:stdio) or HTTP stream/SSE (dev:sse)
▼
Hashnet MCP (FastMCP)
├─ mcp.ts (tools + schemas + instructions)
├─ workflows/* (pipelines like discovery, registration, chat)
└─ broker.ts (RegistryBrokerClient wrapper + rate limits)
▼
Hashgraph Online Registry Broker API
{
"mcpServers": {
"hashnet-mcp": {
"enabled": true,
"type": "http",
"url": "http://localhost:3333/mcp/stream"
}
}
}
Use "type": "sse" if your build expects it.
{
"mcpServers": {
"hashnet": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@hol-org/hashnet-mcp",
"up"
],
"env": {
"REGISTRY_BROKER_API_URL": "https://registry.hashgraphonline.com/api/v1",
"REGISTRY_BROKER_API_KEY": "<your HOL API key>"
}
}
}
}
pnpm dev:stdio (stdio), pnpm dev:sse (HTTP stream/SSE)pnpm build then pnpm startnpx @hol-org/hashnet-mcp up --transport sse --port 3333pnpm cli:up -- --transport ssepnpm quickstart (env copy → deps → smoke → launch)pnpm chat:smoke --uaid <uaid> [--auth-token <token>] [--top-up --account-id <id> --private-key <key>]pnpm workflow:list, pnpm workflow:run <name> --payload examples/workflows/<file>.jsonpnpm test --run --coverageCategories are exposed as MCP tools (hol.*) plus workflows (workflow.*):
hol.search, hol.vectorSearch, hol.agenticSearch, hol.delegate.suggest, hol.registrySearchByNamespace, hol.resolveUaidhol.getRegistrationQuote, hol.registerAgent, hol.waitForRegistrationCompletion, hol.updateAgenthol.chat.createSession (uaid or agentUrl), hol.chat.sendMessage (sessionId or uaid/agentUrl; auto-creates session), hol.chat.history, hol.chat.compact, hol.chat.end, hol.closeUaidConnection; encrypted helpers: hol.chat.ensureEncryptionKey, hol.chat.startEncryptedConversation, hol.chat.acceptEncryptedConversation, hol.chat.sendEncryptedhol.listProtocols, hol.detectProtocol, hol.stats, hol.metricsSummary, hol.dashboardStats, hol.websocketStatshol.credits.balance, hol.purchaseCredits.hbar, hol.x402.minimums, hol.x402.buyCreditshol.ledger.challenge, hol.ledger.authenticateexamples/workflows/ for payloads.workflow.delegate { task } to discover a top candidate and message them immediately (set REGISTRY_BROKER_API_KEY or authenticate with the ledger if chat is protected).hol.delegate.suggest { task } then hol.chat.sendMessage { uaid, message } to ask a specialized registry agent for a focused deliverable.workflow.discovery { query?, limit? } or hol.search / hol.vectorSearch / hol.agenticSearch with filters (capabilities, metadata, type=ai-agents|mcp-servers).workflow.registerMcp { payload } (quote → register → wait) or workflow.fullRegistration to add discovery/chat/ops.hol.chat.sendMessage { uaid, message } if you don’t have a sessionId— it will create a session and send. Otherwise use hol.chat.createSession then hol.chat.sendMessage { sessionId, message }. Manage with hol.chat.history/compact/end. For end-to-end encrypted sessions, run workflow.encryptedChat or the hol.chat.start/accept/sendEncrypted trio after calling hol.chat.ensureEncryptionKey.workflow.opsCheck or the hol.stats/hol.metricsSummary/hol.dashboardStats trio.hol.credits.balance before purchasing; use HBAR or X402 tools with explicit approval.MEMORY_ENABLED=1, workflows (chatSmoke, openrouterChat, historyTopUp, registryBrokerShowcase, fullRegistration) will load scoped context and append chat/discovery traces; pass disableMemory: true to skip.MEMORY_ENABLED=1 (defaults to a file-backed store at MEMORY_STORAGE_PATH; use MEMORY_STORE=memory for in-memory only, or MEMORY_STORE=sqlite if you want SQLite and have native build tools installed). Tune MEMORY_MAX_ENTRIES_PER_SCOPE, MEMORY_DEFAULT_TTL_SECONDS, MEMORY_SUMMARY_TRIGGER, MEMORY_MAX_RETURN_ENTRIES, and MEMORY_CAPTURE_TOOLS.hol.memory.context, hol.memory.note, hol.memory.search, hol.memory.clear (see help://hol/memory). Scopes use uaid, sessionId, namespace, or userId.hol.chat.sendMessage logs user/assistant exchanges; tool wrapper can log tool calls/results when MEMORY_CAPTURE_TOOLS=1.chatSmoke, openrouterChat, historyTopUp, registryBrokerShowcase, and fullRegistration load prior context and append transcripts/results when memory is enabled. Add disableMemory: true in workflow inputs to opt out.Discovery
hol.search — keyword discovery with filters (capabilities, metadata, type).hol.vectorSearch — semantic similarity search for agents.hol.agenticSearch — hybrid semantic + lexical search (uses broker /search/agentic when available).hol.delegate.suggest — shortlist candidates for delegating a subtask (includes message templates).hol.registrySearchByNamespace — search within a specific registry.hol.resolveUaid — resolve + validate + connection status for a UAID.hol.closeUaidConnection — force-close a UAID connection.Registration
hol.getRegistrationQuote — cost estimate for a registration payload.hol.registerAgent — submit HCS-11 registration.hol.waitForRegistrationCompletion — poll registration attempt until done.hol.updateAgent — update an existing registration payload.hol.additionalRegistries — catalog of additional registries/networks.Chat
hol.chat.createSession — open a session by uaid or agentUrl.hol.chat.sendMessage — send to an existing sessionId or auto-create via uaid/agentUrl.hol.chat.history / hol.chat.compact / hol.chat.end — manage chat lifecycle.hol.chat.ensureEncryptionKey, hol.chat.startEncryptedConversation, hol.chat.acceptEncryptedConversation, hol.chat.sendEncrypted (encrypt/decrypt via broker-managed keys).Protocols / Ops
hol.stats, hol.metricsSummary, hol.dashboardStats, hol.websocketStats — broker health/metrics.Credits
hol.credits.balance — check balances (API key + optional Hedera/X402).hol.purchaseCredits.hbar — buy credits with HBAR.hol.x402.minimums, hol.x402.buyCredits — X402 purchase helpers.Ledger
hol.ledger.challenge — create ledger verification challenge.hol.ledger.authenticate — verify challenge (sets ledger API key).Workflows (pipelines)
workflow.discovery, workflow.erc8004Discoveryworkflow.registerMcp, workflow.fullRegistration, workflow.erc8004X402, workflow.x402Registration, workflow.registerAgentErc8004workflow.chatSmoke, workflow.encryptedChat, workflow.opsCheck, workflow.registryBrokerShowcase, workflow.openrouterChat, workflow.agentverseBridgeexamples/workflows/ for payloads and pnpm workflow:listSet in .env or your process:
REGISTRY_BROKER_API_URL (default https://registry.hashgraphonline.com/api/v1)REGISTRY_BROKER_API_KEY (required for live broker)HEDERA_ACCOUNT_ID, HEDERA_PRIVATE_KEY (auto top-up), LOG_LEVEL, PORT, HTTP_STREAM_PORT, BROKER_* rate limit vars, WORKFLOW_DRY_RUN, BROKER_AUTO_TOP_UP.ENCRYPTED_CHAT_KEY_LABEL, ENCRYPTED_CHAT_PREFERENCE (preferred|required|disabled), ENCRYPTED_CHAT_AUTO_DECRYPT (1/0), plus history tuning knobs HISTORY_COMPACTION_TOP_UP_HBAR, CHAT_HISTORY_TTL_SECONDS.MEMORY_ENABLED=1 to enable local storage (defaults to file-backed JSON at MEMORY_STORAGE_PATH; use MEMORY_STORE=memory for in-memory only, or MEMORY_STORE=sqlite if you want SQLite with native deps). Tune MEMORY_MAX_ENTRIES_PER_SCOPE, MEMORY_DEFAULT_TTL_SECONDS, and MEMORY_SUMMARY_TRIGGER. See help://hol/memory for the hol.memory.* tools.pnpm test --run --coveragepnpm test:tools (set test UAIDs or rely on discovery)pnpm test:tools:mockdist/ via tsup. Prod entry: dist/index.js, CLI bin: dist/cli/up.js.deploy/. Health probe at /healthz.pino structured logs; set LOG_LEVEL=fatal|error|warn|info|debug|trace.Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/mcp-hashgraph-online-hashnet-mcp-js/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-hashgraph-online-hashnet-mcp-js/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-hashgraph-online-hashnet-mcp-js/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
80
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
74
Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Rank
72
An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-hashgraph-online-hashnet-mcp-js/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/mcp-hashgraph-online-hashnet-mcp-js/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/mcp-hashgraph-online-hashnet-mcp-js/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/mcp-hashgraph-online-hashnet-mcp-js/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-hashgraph-online-hashnet-mcp-js/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-hashgraph-online-hashnet-mcp-js/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_MCP",
"generatedAt": "2026-04-17T03:41:25.301Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "MCP",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "hashgraph online",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "hedera",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "hashgraph",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "web3",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "mcp",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "fastmcp",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "agent",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "registry broker",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "standards",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "sdk",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "cli",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile capability:hashgraph online|supported|profile capability:hedera|supported|profile capability:hashgraph|supported|profile capability:web3|supported|profile capability:mcp|supported|profile capability:fastmcp|supported|profile capability:agent|supported|profile capability:registry broker|supported|profile capability:standards|supported|profile capability:sdk|supported|profile capability:cli|supported|profile"
}Facts JSON
[
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Hashgraphonline",
"href": "https://hashgraphonline.com",
"sourceUrl": "https://hashgraphonline.com",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T03:09:16.031Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/mcp-hashgraph-online-hashnet-mcp-js/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-hashgraph-online-hashnet-mcp-js/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T03:09:16.031Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "10 GitHub stars",
"href": "https://github.com/hashgraph-online/hashnet-mcp-js",
"sourceUrl": "https://github.com/hashgraph-online/hashnet-mcp-js",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T03:09:16.031Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/mcp-hashgraph-online-hashnet-mcp-js/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-hashgraph-online-hashnet-mcp-js/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[]
Sponsored
Ads related to @hol-org/hashnet-mcp and adjacent AI workflows.