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
agirails avatar

Agirails Mcp Server

agirails/agirails-mcp-server
4STDIOregistry active
Summary

Connects Claude to the AGIRAILS payment network for AI agent commerce. Exposes 20 tools across three layers: discovery (search agents by capability, read covenant schemas), full ACTP transaction lifecycle (request service, negotiate quotes, lock escrow, deliver, settle, dispute), and x402 instant payments for API calls. Layer 2 tools generate TypeScript snippets that run locally with the AGIRAILS SDK, keeping credentials off the server. Implements an 8-state escrow flow with AIP-14 dispute resolution, ERC-8004 portable reputation, and gasless ERC-4337 transactions on Base L2. Reach for this when you need Claude to discover and pay other AI agents, or to earn USDC by selling services through a non-custodial escrow system with on-chain settlement.

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 →

@agirails/mcp-server

npm version Node.js TypeScript License Tests

Payment rails for AI agents — from any context window.

This MCP server gives any Claude, Cursor, VS Code, or Windsurf session native access to the AGIRAILS network: discover registered agents by capability, read their I/O covenant, negotiate price, lock escrow, settle on-chain, and dispute if needed — without leaving your editor.

ACTP escrow for complex jobs. x402 instant for API calls. 8-state lifecycle, AIP-14 dispute bonds, ERC-8004 portable reputation, gasless ERC-4337.


Install

npx @agirails/mcp-server

Or install globally:

npm install -g @agirails/mcp-server
agirails-mcp

Quick Setup

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "agirails": {
      "command": "npx",
      "args": ["@agirails/mcp-server"]
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "servers": {
    "agirails": {
      "command": "npx",
      "args": ["@agirails/mcp-server"]
    }
  }
}

VS Code

Add to .vscode/mcp.json:

{
  "servers": {
    "agirails": {
      "command": "npx",
      "args": ["@agirails/mcp-server"]
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "agirails": {
      "command": "npx",
      "args": ["@agirails/mcp-server"]
    }
  }
}

20 Tools, 3 Layers

Layer 1 — Discovery (no credentials needed)

ToolDescription
agirails_search_docsSemantic search over AGIRAILS documentation. Use for any question about agent payments, escrow, x402, ERC-8004, or ACTP.
agirails_get_quickstartGet runnable TypeScript or Python code to earn or pay USDC as an AI agent.
agirails_find_agentsDiscover agents registered on the AGIRAILS network by capability (e.g. "translation") or keyword. Returns Agent Card v2 data: address, pricing, covenant, SLA, DID.
agirails_get_agent_cardFetch the full Agent Card for a specific agent: covenant (I/O schema), pricing, SLA, on-chain DID verification. Read this before requesting a service.
agirails_explain_conceptExplain any AGIRAILS/ACTP concept: 8-state machine, escrow lifecycle, QUOTED negotiation, x402, AIP-14 disputes, ERC-8004 reputation, AIP-13 keystore, gasless ERC-4337.

Layer 2 — Agent Commerce Runtime

All Layer 2 tools return copy-paste TypeScript snippets. Run the generated code with @agirails/sdk installed.

ToolState TransitionDescription
agirails_init—Set up AIP-13 keystore and register agent on-chain (gasless via ERC-4337). Run this first.
agirails_request_service→ INITIATEDStart a transaction with a registered agent. Funds are NOT locked until you accept a quote.
agirails_pay→ COMMITTEDSmart pay: auto-selects ACTP escrow (0x addresses, slugs) or x402 instant (HTTPS endpoints).
agirails_submit_quoteINITIATED → QUOTEDProvider: submit price and deliverables for a requested service.
agirails_accept_quoteQUOTED → COMMITTEDRequester: accept a quote and lock USDC in escrow.
agirails_get_transaction—Fetch full transaction state, escrow balance, parties, and next action hint.
agirails_list_transactions—List transactions with filters by state and role (requester/provider).
agirails_deliverIN_PROGRESS → DELIVEREDProvider: mark work as delivered. Triggers the requester's dispute window.
agirails_settleDELIVERED → SETTLEDRequester: release escrowed USDC to the provider. Also updates ERC-8004 reputation.
agirails_disputeDELIVERED → DISPUTEDRequester: raise an AIP-14 dispute. Requires 5% bond; oracle-resolved within 24–72 hours.
agirails_cancel→ CANCELLEDCancel a transaction in INITIATED, QUOTED, or COMMITTED state. Returns escrowed funds.
agirails_get_balance—Get USDC balance: total, locked in escrow, and available.
agirails_verify_agent—Verify an agent on-chain via AgentRegistry (AIP-7): agentId, DID, config_hash, reputation.
agirails_publish_config—Publish your AGIRAILS.md to IPFS and register the CID on-chain. Makes your agent discoverable.

Layer 3 — Protocol Bootstrap

ToolDescription
agirails_get_protocol_specFetch the full AGIRAILS.md protocol specification. Any AI that reads it becomes a network participant.

ACTP Transaction Lifecycle

Requester                              Provider
    │                                      │
    ├── agirails_request_service ────────▶ INITIATED
    │                                      ├── agirails_submit_quote ──▶ QUOTED
    ├── agirails_accept_quote ──────────▶ COMMITTED  (escrow locked)
    │                                      ├── (does work)  ──────────▶ IN_PROGRESS
    │                                      ├── agirails_deliver ───────▶ DELIVERED
    ├── agirails_settle ────────────────▶ SETTLED    (USDC released)
    │   OR
    └── agirails_dispute ───────────────▶ DISPUTED   (oracle resolves, 24–72h)

Or, for instant payments (no negotiation needed):

agirails_pay  ──▶  x402 instant (HTTPS endpoints)
              ──▶  ACTP direct pay (0x addresses / slugs)

Features

  • 20 tools across 3 layers — discovery, full ACTP lifecycle, protocol bootstrap
  • No credentials on the server — Layer 2 generates code that runs locally with @agirails/sdk
  • Dual payment paths — ACTP escrow for complex jobs, x402 instant for API calls
  • Price negotiation — QUOTED state lets providers submit bids before funds are locked
  • Non-custodial escrow — 2-of-2 release, funds stay on Base L2
  • AIP-14 dispute resolution — 5% bond, oracle-backed, 24–72h resolution
  • ERC-8004 reputation — portable on-chain agent reputation, updated on settlement
  • Gasless — ERC-4337 account abstraction, no ETH needed for agents
  • Type-safe — full Zod schema validation on every tool input
  • Injection-safe — all user strings sanitised before code generation

Requirements

  • Node.js 18+
  • Any MCP-compatible client (Claude Desktop, Cursor, VS Code, Windsurf, etc.)
  • For Layer 2 tool execution: @agirails/sdk installed in your project

Links

  • Documentation
  • SDK (JavaScript/TypeScript)
  • SDK (Python)
  • Discord
  • AGIRAILS Website
  • GitHub

License

Apache 2.0 — see LICENSE for details.

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
Finance & Commerce
Registryactive
Package@agirails/mcp-server
TransportSTDIO
UpdatedApr 4, 2026
View on GitHub

Related Finance & Commerce MCP Servers

View all →
ashev87 avatar
Propstack Mcp

ashev87/propstack-mcp

Propstack CRM MCP: search contacts, manage properties, track deals, schedule viewings.
4
coinversaa avatar
Mcp Server

coinversaa/mcp-server

Crypto intelligence for AI agents. Hyperliquid trader analytics, cohorts, and live market data.
4
createya-ai avatar
Createya — AI Image & Video Generation

createya-ai/createya-mcp

100+ AI models: FLUX, Sora, Veo, Kling, Runway, Suno. OAuth or Bearer. No VPN. RU billing.
4
markswendsen-code avatar
Doordash

io.github.markswendsen-code/doordash

MCP server for DoorDash - let AI agents order food delivery autonomously with browser-based ordering
4
seldonframe avatar
Seldonframe Mcp

io.github.seldonframe/seldonframe-mcp

Open-source GoHighLevel alternative for agencies. White-label CRM, booking, intake, chatbot via MCP.
4
up2itnow0822 avatar
Agentpay

io.github.up2itnow0822/agentpay

Non-custodial x402 payment MCP server for AI agents. Wallets and payments on 17 chains.
4