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

Execute Intent

srotzin/hive-execute
HTTPregistry active
Summary

This is an intent execution engine that turns high-level agent commands into Base L2 transactions. It exposes four MCP tools: submit intents for transfers, swaps, or multi-hop settlements, check execution status by intent ID, pull aggregate stats on success rates and volume, and list available execution providers with reliability scores. Behind the scenes it routes to providers, logs executions to SQLite, and handles atomic settlement. Part of the Hive Civilization agent economy stack. Reach for this when you're building autonomous agents that need to move USDC or execute DeFi operations without manually constructing transactions.

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 →

HiveExecute — Intent Execution Engine — MCP Server

HiveExecute is a Model Context Protocol (MCP) server that resolves and executes agent intents on Base L2. It handles transfers, swaps, multi-hop settlements, and complex transaction graphs for autonomous AI agents.

MCP Endpoint

POST /mcp

All tool interactions use JSON-RPC 2.0 over HTTP.

Initialize

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "initialize"
}

List Tools

{
  "jsonrpc": "2.0",
  "id": 2,
  "method": "tools/list"
}

Call a Tool

{
  "jsonrpc": "2.0",
  "id": 3,
  "method": "tools/call",
  "params": {
    "name": "hiveexecute_submit_intent",
    "arguments": {
      "intent_type": "transfer",
      "from_did": "did:hive:alice",
      "to_did": "did:hive:bob",
      "amount_usdc": 10.00,
      "memo": "Payment for services"
    }
  }
}

Tools

ToolDescription
hiveexecute_submit_intentSubmit an intent for resolution and execution
hiveexecute_get_statusGet execution status by intent ID
hiveexecute_get_statsGet execution statistics (total executions, success rate, volume)
hiveexecute_list_providersList available execution providers and capabilities

hiveexecute_submit_intent

Submit an intent for atomic resolution and execution.

Parameters:

ParamTypeRequiredDescription
intent_typestringYestransfer, swap, or multi_hop
from_didstringYesSender DID
to_didstringYesRecipient DID
amount_usdcnumberYesAmount in USDC
memostringNoDescription or memo

hiveexecute_get_status

Get the execution status of a previously submitted intent.

Parameters:

ParamTypeRequiredDescription
intent_idstringYesExecution ID from submit_intent

hiveexecute_get_stats

Returns total executions, success rate, total volume in USDC, total savings, and daily execution count. No parameters.

hiveexecute_list_providers

Returns available execution providers grouped by intent type, with reliability scores and execution history. No parameters.

REST API

In addition to the MCP endpoint, HiveExecute exposes a REST API:

MethodPathDescription
POST/v1/execute_intentExecute an intent atomically
GET/v1/execute_intent/history/{did}Execution history for an agent
GET/v1/execute_intent/statsExecution statistics
GET/v1/execute_intent/providersAvailable providers by intent type
GET/healthHealth check

Architecture

Node.js with Express. SQLite for execution logs and provider scores. Part of the Hive Civilization autonomous agent economy on Base L2.

License

Proprietary — Hive Civilization


Hive Civilization

Hive Civilization is the cryptographic backbone of autonomous agent commerce — the layer that makes every agent transaction provable, every payment settable, and every decision defensible.

This repository is part of the PROVABLE · SETTABLE · DEFENSIBLE pillar.

  • thehiveryiq.com
  • hiveagentiq.com
  • agent-card: https://hivetrust.onrender.com/.well-known/agent-card.json
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 ToolsProductivity & Office
Registryactive
TransportHTTP
UpdatedApr 14, 2026
View on GitHub

More from srotzin

  • Hive Address Screen
  • Hive Agent Kyc
  • Hive Agent Quota
  • Hive Agent Storage
  • 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

Related AI & LLM Tools MCP Servers

View all →
srotzin avatar
Hive Address Screen

srotzin/hive-mcp-address-screen

HiveAddressScreen MCP — pre-settlement on-chain risk screen. 17-vector GoPlus rail
srotzin avatar
Hive Aml Screen

srotzin/hive-mcp-aml-screen

Real-time AML and sanctions screening for agent-to-agent transactions
srotzin avatar
Hive Auction

srotzin/hive-mcp-auction

Sealed-bid and English auctions for agent capabilities and compute time
srotzin avatar
Hive Backup

srotzin/hive-mcp-backup

Snapshot and restore service for agent state and DID-bound configuration
srotzin avatar
Hive Barter

srotzin/hive-mcp-barter

Multi-party agent barter — non-cash capability exchange with cryptographic receipts
srotzin avatar
Hive Credit

srotzin/hive-mcp-credit

Agent credit issuance and scoring — programmable credit lines on Base L2