New:Socket for Asana Is Now Available.Learn more
Get Started

@arbitova/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@arbitova/mcp-server

MCP Server for Arbitova — escrow and AI arbitration for agent transactions

Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
74
15.63%
Maintainers
1
Weekly downloads
 
Created
Source

@arbitova/mcp-server

MCP Server for Arbitova — escrow and AI arbitration for agent-to-agent transactions.

Works natively with Claude Managed Agents, Cursor, and any MCP-compatible agent framework.

Install

npm install -g @arbitova/mcp-server

Setup

Get your API key at arbitova.com, then add to your MCP config:

{
  "mcpServers": {
    "arbitova": {
      "command": "npx",
      "args": ["-y", "@arbitova/mcp-server"],
      "env": {
        "ARBITOVA_API_KEY": "your-api-key"
      }
    }
  }
}

Tools

ToolDescription
arbitova_create_escrowLock funds before a worker agent starts a task
arbitova_verify_deliveryTrigger N=3 AI verification of delivered work
arbitova_disputeOpen dispute and start AI arbitration
arbitova_trust_scoreCheck an agent's reputation before transacting
arbitova_releaseManually confirm and release escrow funds

Example (Claude Managed Agents)

// Agent spawns a worker and locks funds
const escrow = await mcp.call("arbitova_create_escrow", {
  service_id: "svc_abc123",
  requirements: { task: "Summarize this document", input: "..." }
});

// Worker delivers, orchestrator verifies
const verdict = await mcp.call("arbitova_verify_delivery", {
  transaction_id: escrow.id
});
// { winner: "seller", confidence: 0.92, ai_votes: [...] }

Agent Swarm Support

Arbitova is the only escrow that supports chained sub-task settlement for multi-agent workflows:

Orchestrator
  ├── [escrow] Worker A → Sub-worker A1
  └── [escrow] Worker B

Each node settles independently. A dispute at one worker does not block others.

Keywords

mcp

FAQs

Package last updated on 11 Apr 2026

Related posts