Install
$ agentstack add mcp-hashgraph-online-hol-claude-md ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
HOL CLAUDE.md Templates
| | CLAUDE.md templates for the Universal Agentic Registry. Configure Claude Code to build AI agents that discover and connect with 59,000+ agents across NANDA, MCP, A2A, Virtuals, and more.📚 SDK Documentation📖 API Documentation | | :-------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
[](https://www.npmjs.com/package/@hashgraphonline/standards-sdk) [](https://app.getpostman.com/run-collection/51598040-f1ef77fd-ae05-4edb-8663-efa52b0d1e99?action=collection%2Ffork&source=rip_markdown&collection-url=entityId%3D51598040-f1ef77fd-ae05-4edb-8663-efa52b0d1e99%26entityType%3Dcollection%26workspaceId%3Dfb06c3a9-4aab-4418-8435-cf73197beb57) [](https://hol.org/registry/api/v1/openapi.json)
[](https://codesandbox.io/s/github/hashgraph-online/hol-claude-md) [](https://stackblitz.com/github/hashgraph-online/hol-claude-md) [](https://gitpod.io/#https://github.com/hashgraph-online/hol-claude-md)
What is the Universal Registry?
The Universal Agentic Registry is the connectivity layer for the autonomous web. One standards-compliant API to access agents from:
| Protocol | Description | |----------|-------------| | Virtuals | Tokenized AI agents | | A2A | Google's Agent-to-Agent protocol | | MCP | Anthropic's Model Context Protocol | | ERC-8004 | On-chain agent verification | | x402 Bazaar | Agent payment rails | | OpenConvAI | Conversational AI standard | | XMTP | Decentralized messaging | | ANS | Agent Name Service |
What is this?
CLAUDE.md files provide Claude Code with project-specific context, coding standards, and guidelines. This repository contains templates with accurate HOL SDK examples.
Quick Start
curl -O https://raw.githubusercontent.com/hashgraph-online/hol-claude-md/main/CLAUDE.md
What's Included
Accurate SDK Examples
The templates include real, working code for:
RegistryBrokerClientinitialization- Agent search with filters
- UAID resolution
- Agent registration with auto top-up
- Chat conversations
- Vector (semantic) search
- Registry stats and queries
Code Quality Standards
- TypeScript strict mode
- File naming conventions
- TDD workflow
- Validation checklist
Example: Search for Agents
import { RegistryBrokerClient } from '@hashgraphonline/standards-sdk';
const client = new RegistryBrokerClient();
const results = await client.search({
q: 'weather',
registry: 'hcs-10',
limit: 10,
});
Example: Chat with Agent
const conversation = await client.chat.start({
uaid: 'hcs10://0.0.123456/agent',
auth: {
accountId: process.env.HEDERA_OPERATOR_ID!,
privateKey: process.env.HEDERA_OPERATOR_KEY!,
},
});
const response = await conversation.sendMessage({
content: 'Hello!',
});
API & Documentation
| Resource | Link | |----------|------| | Live Registry | hol.org/registry | | API Documentation | hol.org/docs/registry-broker | | SDK Reference | hol.org/docs/libraries/standards-sdk | | Postman Collection | Run in Postman | | OpenAPI Spec | openapi.json | | npm Package | @hashgraphonline/standards-sdk |
Related Repositories
standards-sdk- The core SDK powering the registry clienthol-claude-skills- Claude Code slash commands for HOLhol-cursorrules- Cursor AI rules for HOL development
🏆 Score HOL Points
Contribute to this repository and score HOL Points!
- 🔧 Fix bugs or improve documentation
- ✨ Add new features or examples
- 📝 Submit pull requests to score points
Points can be used across the HOL ecosystem. Learn more →
License
MIT License - see [LICENSE](LICENSE) for details.
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: hashgraph-online
- Source: hashgraph-online/hol-claude-md
- License: MIT
- Homepage: https://hol.org
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.