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 Agent Storage

srotzin/hive-mcp-agent-storage
HTTPregistry active
Summary

Gives Claude agent-native object storage with DID-scoped namespaces and per-byte metering in real Base USDC. You get four core operations: put, get, list, and delete. Writes cost $0.0001 per KB, cross-DID reads $0.00005 per KB, same-namespace reads are free. The MCP shim is live over Streamable HTTP, but the actual storage backend routing to Storj, Filecoin, and Arweave isn't deployed yet, so calls return 503 with retry-after headers. The earn rails work now. Reach for this when you're building multi-agent systems that need isolated storage with cryptographic receipts and transparent settlement, not just another S3 wrapper.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
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 →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
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 →

Hive Agent Storage · Agent-Native Object Storage MCP

hive-mcp-agent-storage

Agent-native object storage MCP server. Per-agent DID isolation. x402 pay-per-byte. Real Base USDC.

Smithery Glama Backend Release License

https://hive-mcp-agent-storage.onrender.com/mcp


Hive Agent Storage

Agent-native object storage with per-agent DID isolation and x402 pay-per-byte metering.

hive-mcp-agent-storage is a Model Context Protocol (MCP) server that gives autonomous agents a first-class object-storage primitive. Each agent gets its own DID-isolated namespace; reads inside the namespace are free, writes are metered per KB in real Base USDC, and cross-DID reads are metered per KB. Storage is routed under the hood to Storj (hot), Filecoin (warm), or Arweave (cold) depending on retention class.

The differentiator is not a new storage backend. It is the agent-native shape: DID-scoped namespaces, x402 settlement, content-addressed receipts, and an MCP/A2A-compatible discovery surface.

  • Protocol: MCP 2024-11-05 over Streamable-HTTP / JSON-RPC 2.0
  • A2A: AgentCard at /.well-known/agent.json
  • x402: every paid call settles in real Base USDC to 0x15184bf50b3d3f52b60434f8942b7d52f2eb436e
  • Rails: USDC on Base L2 — no mocks, no testnet, no dev-trust
  • Author: Steve Rotzin · Hive Civilization · brand gold #C08D23 (Pantone 1245 C)

Backend status — pending

The MCP shim, registry manifests, AgentCard, and JSON-LD ship today as a discovery anchor. The upstream backend at hivemorph.onrender.com/v1/storage/* is not yet live. Until it ships, every storage tool returns a 503-shape body:

{
  "error": "backend_pending",
  "retry_after": 86400,
  "detail": "Hive Agent Storage backend endpoints (/v1/storage/*) are not yet live...",
  "brand": "#C08D23"
}

The shared hive_earn_* tools route to live /v1/earn/* endpoints and behave normally.

Tools

ToolPurposePricing
agent_storage_putUpload bytes into an agent-isolated namespace. Choose hot/warm/cold retention class.$0.0001/KB upload, real Base USDC
agent_storage_getRead an object. Free for own DID.$0.00005/KB cross-DID, real Base USDC
agent_storage_listList object keys with prefix + pagination.Free
agent_storage_deleteTombstone an object (owner-only).Free
agent_storage_quotaBytes used / allocated / object count / lifetime spend.Free

Plus the standard Hive earn rails: hive_earn_register, hive_earn_me, hive_earn_leaderboard.

Endpoints

PathPurpose
POST /mcpJSON-RPC 2.0 / MCP 2024-11-05
GET /HTML landing with comprehensive meta tags + JSON-LD
GET /healthHealth + telemetry
GET /.well-known/mcp.jsonMCP discovery descriptor
GET /.well-known/agent.jsonA2A AgentCard
GET /.well-known/oac.jsonOpen Agent Card JSON-LD
GET /.well-known/security.txtRFC 9116 security contact
GET /robots.txtAllow-all crawl policy
GET /sitemap.xmlCrawler sitemap
GET /og.svg1200×630 Hive-gold OG image
GET /seo.jsonJSON-LD structured data (SoftwareApplication)

Connect

Claude Desktop / Cursor / Manus and other MCP clients can mount the server via Streamable-HTTP:

{
  "mcpServers": {
    "hive-agent-storage": {
      "url": "https://hive-mcp-agent-storage.onrender.com/mcp"
    }
  }
}

Smithery one-click install: https://smithery.ai/server/hivecivilization (server: hive-mcp-agent-storage).

Architecture

       MCP / A2A clients
            │
            ▼
  hive-mcp-agent-storage  (this repo)
            │  per-agent DID isolation
            │  x402 metering shim
            ▼
   /v1/storage/*  (hivemorph.onrender.com — pending)
            │
            ├─ Storj      (hot, frequent access)
            ├─ Filecoin   (warm, periodic access)
            └─ Arweave    (cold, permanent)

Per-agent DID isolation means:

  • The agent's DID is the namespace key. Reads/writes inside the namespace require an API key bound to that DID at HiveGate.
  • Cross-DID reads are explicitly metered and audited; there is no implicit trust.
  • Tombstone receipts are chain-attested; cold-tier (Arweave) deletes unlink from the namespace but the object remains on-chain by design.

License

MIT. © Steve Rotzin / Hive Civilization. Brand gold #C08D23 (Pantone 1245 C). Never #f5c518.

Agent-native (v1.0.0)

This shim ships the Hive Civilization agent-native bundle so any A2A or MCP-aware agent can discover, pay, and earn:

  • A2A AgentCard — GET /.well-known/agent.json (also at /agent.json).
  • Open Agent Card (OAC) JSON-LD — embedded inline at / and /agent.html, with @type SoftwareApplication + @type AgentCard under @context https://schema.org + https://a2a-protocol.org/v1.
  • Earn rails — hive_earn_register, hive_earn_me, hive_earn_leaderboard against https://hivemorph.onrender.com/v1/earn/*. Resilient to upstream cold-start.
  • x402 propagation — paid responses pass through the upstream 402 body untouched so the consuming agent can auto-pay.
  • Pricing annotations — every paid tool descriptor carries a non-standard pricing block (amount / currency / chain / recipient) ahead of MCP-next.
  • Brand: Hive Civilization gold #C08D23. Settlement: real Base USDC, recipient 0x15184bf50b3d3f52b60434f8942b7d52f2eb436e. No mock, no testnet.

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 →
inference shell
inference shell
create and run specialised agents in minutes
build now →
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 →
Categories
AI & LLM Tools
Registryactive
TransportHTTP
UpdatedApr 28, 2026
View on GitHub

More from srotzin

  • Hive Aml Screen
  • Hive Auction
  • Hive Backup
  • Hive Barter
  • Hive Capital
  • Hive Cdn
  • Hive Compute
  • Hive Consult
  • Hive Credit Broker
  • Hive Dispute
  • Hive Escrow
  • Hive Exchange
  • Hive Flag
  • Hive Identity
  • Hive Insurance
  • Hive Keet Bridge
  • Hive Ledger Bridge
  • Hive Log
  • Hive Mining
  • Hive Morph
  • Hive MPP
  • Hive Openclaw Bridge
  • Hive Oracle
  • Hive Secrets

Related AI & LLM Tools MCP Servers

View all →
srotzin avatar
Simpson Strong-Tie Agent

srotzin/simpson-strong-agent-service

Construction product lookup for Simpson Strong-Tie structural catalog
store.ivoryriver avatar
Ivory River — Agent Commerce

store.ivoryriver/agent-commerce

Search, configure, quote, recommend gaming PCs and components. Hands user to in-browser checkout.
tech.ydb-qdrant.pets avatar
Codex Pets Registry

tech.ydb-qdrant.pets/codex-pets-ydb-qdrant

Search, preview, install community Codex pet packs, and discover the pet request flow.
tech.ydb-qdrant avatar
Gravity AI UI

tech.ydb-qdrant/gravity-ai-ui

Search public Gravity AI UI drafts and generate Gravity UI interface payloads.
thebackers avatar
Pplz Agent

thebackers/pplz-agent

PPLZ AI Agent — Let AI play your social life simulation automatically.
trushtonfactory avatar
Anthropic Admin Mcp

trushtonfactory/anthropic-admin-mcp

Native MCP server for the Anthropic Admin API: org, workspaces, members, API keys, usage, costs.