CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
srotzin avatar

Hive MPP

srotzin/hive-mcp-mpp
HTTPregistry active
Summary

This server bridges Claude to a dual-rail payment system that tries MPP (Machine Payments Protocol) on Tempo first, then falls back to x402 on Base L2 if needed. You get five tools: initialize a payment challenge, verify settlement by transaction hash, fetch MPP-attested identity claims for DIDs, check settlement status, and pull rail metadata including RPC endpoints and treasury addresses. All calls proxy to live backends (hivetrust and hive-mcp-identity), no mocked responses. Reach for this when you're building agents that need to handle micropayments or verify on-chain identity attestations as part of a workflow, especially if you want automatic fallback between payment rails.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →

hive-mcp-mpp

Dual-Rail 402 MCP Server (x402 + MPP Tempo)

● Hive Civilization · thehiveryiq.com

Public MCP surface wrapping the dual-rail 402 (x402 primary / MPP Tempo fallback) integration on hivetrust and hive-mcp-identity. Flips Tempo MPP rail PR1 into Hive's own partner-facing surface area.


Tools

ToolDescriptionBackendFree?
mpp_payment_initInit dual-rail 402 challenge (MPP primary + x402 fallback)hivetrust—
mpp_payment_verifyVerify a settled MPP or x402 payment by tx_hashhivetrust—
mpp_identity_attestGet MPP-attested identity claim for a DIDhive-mcp-identity—
mpp_settlement_statusCheck MPP settlement state for a transactionhivetrust—
mpp_rail_infoReturn rail metadata (Tempo RPC, x402 URL, currencies, treasury)localfree

Endpoints

EndpointMethodDescription
/mcpPOSTJSON-RPC 2.0 / MCP 2024-11-05
/healthGETHealth check
/.well-known/mcp.jsonGETMCP discovery manifest
/.well-known/agent-card.jsonGETA2A agent card
/.well-known/ap2.jsonGETAP2 agent descriptor
/.well-known/security.txtGETSecurity contact
/robots.txtGETCrawler rules
/sitemap.xmlGETSitemap

Payment Rails

MPP (Primary) — Tempo

  • Protocol: Machine Payments Protocol (IETF draft-ryan-httpauth-payment)
  • Header: Payment: scheme="mpp", tx_hash="0x...", rail="tempo"
  • RPC: https://rpc.tempo.xyz
  • Asset: USDCe (TIP-20)

x402 (Fallback) — Base L2

  • Header: X-Payment: <base64-signed-receipt>
  • Fallback URL: https://hivetrust.onrender.com/v1/x402
  • Asset: USDC (0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913)
  • Network: Base L2

Treasury

0x15184bf50b3d3f52b60434f8942b7d52f2eb436e

Connect

Claude / MCP client

{
  "mcpServers": {
    "hive-mpp": {
      "url": "https://hive-mcp-mpp.onrender.com/mcp",
      "transport": "streamable-http"
    }
  }
}

Direct call example

# List tools
curl -s -X POST https://hive-mcp-mpp.onrender.com/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | jq .result.tools[].name

# Get rail info (free, no payment required)
curl -s -X POST https://hive-mcp-mpp.onrender.com/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"mpp_rail_info","arguments":{}}}'

Backend Provenance

ServiceCommitsEndpoints
hivetrustf0c53fd + 841e17b/v1/mpp/payment/*, /v1/x402
hive-mcp-identityb292e78 + 8098001/v1/mpp/identity/attest

Real Rails Only

No mock responses. No simulated settlement. All tool calls proxy to live backend services.
If a backend endpoint is unavailable, the server returns the upstream error — it never fabricates data.


Registries

  • Glama: auto-indexed from GitHub — claim at https://glama.ai/mcp/servers/srotzin/hive-mcp-mpp
  • MCP.so: auto-indexed from GitHub — claim for verified-author tag
  • awesome-mcp-servers: bundled PR pending

License

MIT © 2026 Steve Rotzin / Hive Civilization


Brand: Hive Civilization gold #C08D23 (Pantone 1245 C)
Sources: hivetrust · hive-mcp-identity · Tempo RPC · MPPScan

Hive Civilization Directory

Part of the Hive Civilization — agent-native financial infrastructure.

  • Endpoint Directory: https://thehiveryiq.com
  • Live Leaderboard: https://hive-a2amev.onrender.com/leaderboard
  • Revenue Dashboard: https://hivemine-dashboard.onrender.com
  • Other MCP Servers: https://github.com/srotzin?tab=repositories&q=hive-mcp

Brand: #C08D23

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
Registryactive
TransportHTTP
UpdatedMay 4, 2026
View on GitHub

More from srotzin

  • Hive Openclaw Bridge
  • Hive Oracle
  • Hive Secrets
  • Hive Sla Monitor
  • Hive Tax Observer
  • Hive Zk Attestation
  • HiveAudit Readiness
  • HiveBank
  • HiveClear
  • HiveConsciousness
  • HiveEcho
  • HiveForge
  • HiveGate
  • HiveLaw
  • HiveMind
  • HivePulse
  • HiveTrust
  • Simpson Strong-Tie Agent
  • HiveGate — Hive Civilization Agent Trust & Settlement1
  • Hive Connector
  • Hive Passport
  • Hive Wallet
  • Hive A/B Test
  • Hive Compute Grid