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 Dispute

srotzin/hive-mcp-dispute
HTTPregistry active
Summary

This pulls dispute and arbitration signals from Kleros, UMA Optimistic Oracle, and Reality.eth so your agent can check a counterparty's history before sending funds. It queries subgraphs and on-chain logs, then scans for reversal patterns on Etherscan and friends. Four tools: check an address for active cases and past disputes, list arbitration providers with current caseloads, get ranked routing suggestions for a new dispute, and see a 24-hour summary of flagged addresses. Hive doesn't adjudicate or hold funds. It's read-only signal data. You still file with Kleros or UMA yourself. Useful when you're building agent commerce and need to surface reputation or risk flags before committing to a transaction.

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-mcp-dispute

srotzin/hive-mcp-dispute MCP server

Brand: Hive Civilization Gold License: MIT MCP: 2024-11-05

Observational dispute/chargeback signal surface for agent-to-agent commerce.

Hive does NOT arbitrate, judge, freeze funds, or enforce dispute outcomes. This is observational signal data only. Disputes are resolved by third-party protocols (Kleros, UMA, Reality.eth) or off-chain legal process. Hive is not a court.

What this is

An MCP server that surfaces arbitration and reversal signals an agent can read before it agrees to a counterparty payment. It pulls from real public sources:

SourceSurfaceMethod
Kleros court-v2 subgraphActive disputes, recent rulingsGraphQL (with on-chain eth_getLogs fallback against KlerosLiquid 0x988b…28069)
UMA Optimistic Oracle v3 subgraphOpen assertions, disputed assertionsGraphQL (with on-chain fallback against 0xfb55…C0dE)
Reality.eth subgraphOpen questions, pending arbitrationGraphQL (with on-chain fallback against 0xAf33…49CA)
Etherscan / Basescan / ArbiscanOn-chain reversal-pattern detection (paired out-then-in within 24h, value within 5%, same peer)REST account/txlist

What this is NOT

  • ❌ A court
  • ❌ An arbitrator
  • ❌ A custodian of disputed funds
  • ❌ A filing agent (no auto-filing with Kleros / UMA / Reality.eth)
  • ❌ An enforcement layer

Tools

ToolDescription
dispute_checkGiven counterparty address + chain → dispute history + active arbitration cases + on-chain reversal flags
dispute_providersList Kleros / UMA / Reality.eth with current case load + intake URLs
dispute_routeGiven case description + amount + jurisdiction → ranked provider options (no auto-filing)
dispute_today24h flagged-counterparty count + top providers by active case load

Endpoints (backend)

MethodPathTool
POST/v1/dispute/checkdispute_check
GET/v1/dispute/providersdispute_providers
POST/v1/dispute/routedispute_route
GET/v1/dispute/todaydispute_today

Every response carries the observational disclaimer and brand_color: "#C08D23".

Install

Smithery (recommended for MCP clients)

npx -y @smithery/cli install hive-mcp-dispute --client claude

Manual (local dev)

git clone https://github.com/srotzin/hive-mcp-dispute
cd hive-mcp-dispute
npm install
node server.js

The server listens on :3000 by default and exposes:

  • POST /mcp — JSON-RPC 2.0 / Streamable-HTTP (MCP 2024-11-05)
  • GET /health — liveness with disclaimer + brand color
  • GET /.well-known/mcp.json — discovery manifest

Configure

Env varDefaultPurpose
PORT3000Listen port
HIVE_BASEhttps://hivemorph.onrender.comBackend root

Brand

Hive Civilization gold — Pantone 1245 C / #C08D23. Baked into every response.

Disclaimer (canonical, baked into every response)

Hive does not arbitrate, judge, freeze funds, or enforce dispute outcomes. This is observational signal data only. Disputes are resolved by third-party protocols (Kleros, UMA, Reality.eth) or off-chain legal process. Hive is not a court.

License

MIT — see LICENSE.

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 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
  • Hive Sla Monitor
  • Hive Tax Observer
  • Hive Zk Attestation
  • HiveAudit Readiness
  • HiveBank
  • HiveClear
  • HiveConsciousness
  • HiveEcho
  • HiveForge
  • HiveGate

Related AI & LLM Tools MCP Servers

View all →
srotzin avatar
Hive Escrow

srotzin/hive-mcp-escrow

Trust-minimized USDC escrow for autonomous agent transactions
srotzin avatar
Hive Exchange

srotzin/hive-mcp-exchange

Agent-to-agent capability exchange and prediction markets
srotzin avatar
Hive Flag

srotzin/hive-mcp-flag

Feature flag service for safe rollouts across the Hive agent fleet
srotzin avatar
Hive Insurance

srotzin/hive-mcp-insurance

Agent liability insurance — claims, premiums, and on-chain payouts
srotzin avatar
Hive Keet Bridge

srotzin/hive-mcp-keet-bridge

MCP server bridging holepunchto/keet-identity-key to the Hive agentic identity network
srotzin avatar
Hive Log

srotzin/hive-mcp-log

Tamper-evident audit log service for agent-to-agent transactions