Agent trust, identity (W3C DID), liability contracts, and USDC settlement on Base L2
{
"mcpServers": {
"io-github-srotzin-hive-gate": {
"args": [
"-y",
"hive-agent-sdk"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Lightweight JavaScript/TypeScript SDK for the Hive Civilization agent infrastructure stack. Give your AI agent a sovereign W3C DID, a verifiable credential, legal standing via HAHS 1.0.0, and USDC settlement rails on Base L2 — in five lines of code.
Is it safe?
No known CVEs for hive-agent-sdk.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 0 days ago. 1 stars.
Will it work with my client?
Transport: sse, http. Compatibility not confirmed.
Context cost
7 tools. ~200 tokens (0.1% of 200K).
Lightweight JavaScript/TypeScript SDK for the Hive Civilization agent infrastructure stack. Give your AI agent a sovereign W3C DID, a verifiable credential, legal standing via HAHS 1.0.0, and USDC settlement rails on Base L2 — in five lines of code.
AI agents today have no portable identity. They're ephemeral sessions tied to a single platform. When that platform changes or shuts down, your agent's history, credentials, and reputation disappear.
Hive Civilization is a 59-service agent infrastructure stack covering identity, trust, legal governance, operations, health, and settlement. This SDK wraps those APIs so you can stop reinventing the identity layer and ship the thing that actually matters.
Works with LangChain, CrewAI, AutoGen, OpenAI Assistants, Anthropic Claude, A2A, MCP, and any custom agent framework.
npm install hive-agent-sdk
pip install hive-civilization-sdk
import { HiveAgent } from 'hive-agent-sdk';
const agent = new HiveAgent({ name: 'my-trading-agent', type: 'finance' });
await agent.register(); // generates a W3C DID (did:key, Ed25519)
await agent.issueCredential(); // VCDM 2.0 VC, signed + Cheqd-anchored
await agent.openVault(); // USDC vault on Base L2
console.log(agent._did); // did:key:z6Mk...
That's it. Your agent now has portable identity, a verifiable credential, and settlement infrastructure.
Not sure if your agent would pass an enterprise security review? Hit this public endpoint — no auth, no signup:
curl "https://hivetrust.onrender.com/v1/verify_agent_risk?agent_id=YOUR_AGENT_DID"
Response meanings:
| Result | Meaning |
|---|---|
ALLOW | Agent has a valid DID, verifiable credential, and trust score above threshold. Enterprise-ready. |
REVIEW | Partial identity found — something is missing or expired. Fixable. |
BLOCK | No recognized identity. Would be rejected by enterprise procurement. |
Fix a BLOCK in 60 seconds:
pip install hive-civilization-sdk
Or register via the SDK:
// JavaScript — check trust programmatically
import { HiveAgent } from 'hive-agent-sdk';
const result = await HiveAgent.checkTrust('did:key:YOUR_DID');
console.log(result.decision); // ALLOW | REVIEW | BLOCK
# Python — check trust programmatically
import httpx
result = httpx.get('https://hivetrust.onrender.com/v1/verify_agent_risk',
params={'agent_id': 'did:key:YOUR_DID'}).json()
print(result['decision']) # ALLOW | REVIEW | BLOCK
If you get BLOCK or REVIEW, register your agent at thehiveryiq.com to get a W3C DID, a VCDM 2.0 verifiable credential, and a live trust score.
| Capability | Standard | Detail |
|---|---|---|
| Sovereign DID | did:key (Ed25519) | W3C DID Core compliant, portable across ecosystems |
| Verifiable Credential | VCDM 2.0 | Ed25519Signature2020, Cheqd registry anchored |
| Trust Score | 0–1000 KYA | 5-pillar behavioral sc |
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'hive-agent-sdk' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Installation```bash
Pricing| Action | Cost |
Configuration```javascript
LangChain```javascript
ComplianceHive Civilization publishes conformity self-assessments for applicable regulations. See the [`compliance/`](compliance/README.md) directory.
ContributingThis SDK wraps the Hive Civilization public APIs. For protocol-level issues or feature requests, open a discussion or issue on this repo.
LicenseMIT — see [LICENSE](LICENSE)
No known vulnerabilities.
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
An MCP (Model Context Protocol) server for performing accessibility audits on webpages using axe-core. Use the results in an agentic loop with your favorite AI assistants (Amp/Cline/Cursor/GH Copilot) and let them fix a11y issues for you!
Structured execution for Claude Code — contracts, postconditions, gates, guardrails.
Belgian legislation via MCP — full-text search across statutes and provisions
Luxembourg legislation via MCP — full-text search across statutes and provisions
MCP Security Weekly
Get CVE alerts and security updates for io.github.srotzin/hive-gate and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.