hive-mcp-spire
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., "@hive-mcp-spiresign a mint attestation for the new agent instance"
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.
hive-mcp-spire. SPIRE Attestation (AFiR) MCP Server
SPIRE creates a tamper-evident, content-bound signature over the exact agent record submitted by the caller. It proves the integrity and provenance of that submitted record. It does not independently observe the agent or establish that the described event occurred.
SPIRE is the attestation surface of the AFiR Protection Program from Hive Civilization. Every attestation is signed with ML-DSA-65 (NIST FIPS 204), a post-quantum signature, by the Hive typed signer. No secret is needed to check an attestation: anyone with the published public key and an independent ML-DSA-65 implementation can verify the signature without contacting Hive. The verify_attestation tool shipped in this server is a convenience relay that calls the same signer over the network; it is not itself an offline verifier. See "Verifying without this server" below for how to check an envelope with no call to Hive at all.
Patent Pending. MIT licensed. Build tier (first 1M attestations) free; verify is always free.
v1.1.0 fix: prior versions signed
sha256('')for every attestation. The submitted mint, trajectory, or coherence content was never actually hashed into the envelope. This is fixed as of schema v2 (fragment typesspire.mint.v2/spire.trajectory.v2/spire.coherence.v2); seeRELEASE_NOTES_v1.1.0.mdfor details. Attestations signed before this fix are still ML-DSA-65-signature-valid but are not content-bound.verify_attestationnow flags them explicitly, and now fails overall validity (not just a side field) when the content you supply does not match what the signer actually hashed.
Demo key notice: the public key currently published by the upstream signer (
get_pubkey) is documented by that signer as a dedicated demo key, isolated from production keys. Treat attestations minted today as a working proof of the signing and verification mechanism, not as backed by a production key-custody process.
Tools
Tool | What it seals | Pass |
| Constitutional agent-instance mint (Atom 1). Instance binding, granted authority, custody terms. No-self-attest custody, decaying authority, non-transferable binding. |
|
| Agent trajectory record (Atom 2). Binds the submitted ordered causal edges. |
|
| Coherence record (Atom 3, lead claim). Binds the submitted aggregate trajectory-drift measure. It does not establish correctness. |
|
| Verify any signed SPIRE attestation by calling the upstream signer plus an independent content check. Returns |
|
| The ML-DSA-65 (FIPS 204) public key, issuer DID, and spec, for independent verification. Free. | none |
Each sign tool returns a signed afir.attestation object: the ML-DSA-65 envelope, its canonical fragments_canon, the original atom you submitted, and a locally-computed canonical_fragment_hash. The server returns success only if the signer-reported hash matches the locally computed hash, so every successful schema v2 response has content_bound: true. Every submission is validated against a required-field schema before signing.
Hand the returned object to verify_attestation, or to your own independent ML-DSA-65 verifier with the published key, to confirm it. Pass atom again to verify_attestation to re-check content binding, not just the signature. If the content you supply does not match what was signed, verify_attestation reports overall valid: false and adds content_mismatch to reasons, because a valid signature over the wrong content is not proof of the content you are relying on.
Related MCP server: Mark Reynolds
Verifying without this server
The signature itself is real ML-DSA-65 (FIPS 204). A third party with the published public key (get_pubkey) and their own independent ML-DSA-65 implementation can check envelope.envelope_signature without running this server or contacting HIVE_SIGNER_URL. That is the sense in which the underlying cryptography is checkable offline. This repository does not currently ship that independent verifier code; verify_attestation as implemented here always calls the same upstream signer that issued the envelope. If you need a verification path with no network call to Hive at any point, you will need to bring your own ML-DSA-65 verification library and check the envelope fields directly; that capability is not in this repository today.
Endpoints
Method | Path | Purpose |
|
| Liveness |
|
| Service descriptor and atom map |
|
| MCP JSON-RPC 2.0 (initialize, tools/list, tools/call, ping) |
|
| MCP discovery manifest |
|
| A2A agent card |
Any other path returns an honest JSON 404 naming the path that was not found and listing the routes above, not a framework default page.
Transport: Streamable-HTTP. Protocol: MCP 2024-11-05. Inbound only: the server never holds custody; it relays typed fragments to the Hive signer and returns the signed envelope.
Upstream signer: https://hive-typed-signer.onrender.com (override with HIVE_SIGNER_URL). The server validates HIVE_SIGNER_URL and PORT at startup and refuses to start with a malformed value, instead of failing confusingly on the first tool call.
Connect
Hosted: the README previously pointed at https://hive-mcp-spire.onrender.com/mcp as the recommended connection method. As of this writing that hosted URL returns 404 on /health, /, and every other path; it is not currently live. Use the local instructions below until a hosted deploy is confirmed reachable.
Smithery: smithery.ai/new?repo=srotzin/hive-mcp-spire
Local:
git clone https://github.com/srotzin/hive-mcp-spire.git
cd hive-mcp-spire
npm install
node server.js # listens on :3000Quick check:
curl -s http://localhost:3000/health
curl -s -X POST http://localhost:3000/mcp -H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'Environment
Var | Default | Purpose |
|
| Listen port. Must be a positive number or the server refuses to start. |
|
| Set |
|
| Upstream typed signer. Must be a valid |
Testing
npm install
npm test # unit + schema + legacy-detection + integration
npm run test:unit # canonicalization, atom-schema, and legacy-detection tests, no network required
npm run test:integration # live MCP server plus upstream-signer round trip; self-skips cleanly if the signer is unreachableCI (.github/workflows/ci.yml) runs the full suite on Node 18, 20, and 22 on every push and pull request, then starts the server and confirms /health and /.well-known/mcp.json respond.
Why this exists
SPIRE binds the exact submitted state into a post-quantum signature that can be checked independently of Hive's servers, given an independent ML-DSA-65 implementation and the published key. The result proves that the signed bytes have not changed and identifies the signing key. Additional evidence is required to establish whether the submitted state accurately describes a real event.
Part of the Hive Civilization agent economy. Copyright 2026 Steve Rotzin / Hive Civilization. MIT.
This server cannot be installed
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 Servers
- AlicenseAqualityCmaintenanceEnables AI agents to sign decisions with post-quantum cryptographic proofs and maintain secure audit trails for compliance. It provides tools for stamping events, verifying chain integrity, and exporting audit data across industries like finance and healthcare.457MIT
- Alicense-qualityBmaintenancePost-quantum document anchoring for AI agents. Anchor any SHA-256 hash to Algorand mainnet with ML-DSA-65 (NIST FIPS-204) signatures and receive a self-contained proof bundle verifiable offline — decades from now, without trusting any vendor.7MIT
- Alicense-qualityBmaintenanceEnables AI agents to sign and verify actions with ML-DSA-65 digital signatures, providing tamper-proof receipts that can be verified offline without any secrets.MIT
- AlicenseAqualityBmaintenanceGives AI agents verifiable, tamper-evident receipts for their actions — attest_action signs a cryptographic receipt for what the agent did (email sent, payment made, form filed), verify_receipt checks it offline, get_identity returns the agent's did:key. Sign locally, verify anywhere, zero backend.373MIT
Related MCP Connectors
Post-quantum, tamper-evident receipts for agent actions. Ed25519 + ML-DSA-65, offline verify.
Issue signed receipts for AI agent actions; verify any receipt offline - free, no account.
Shared, verifiable memory for AI agents and robots: signed tokens that resolve and verify offline.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/srotzin/hive-mcp-spire'
If you have feedback or need assistance with the MCP directory API, please join our Discord server