Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’° Finance & Fintech
  3. MCP Agentic Wallet β€” open Source session management for x402
M
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/11/2026, 12:06:18 AM

MCP Agentic Wallet β€” open Source session management for x402

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

Open-source EIP-2612 Permit-based wallet sessions for AI agents using MCP.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "mcp-agentic-wallet-open-source-session-management-for-x402": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-agentic-wallet-open-source-session-management-for-x402"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’° More in Finance & Fintech

Documentation Overview

MCP Agentic Wallet

Open-source EIP-2612 Permit-based wallet sessions for AI agents. The reference implementation for paid MCP servers β€” verify signatures, manage sessions, settle on-chain. No API keys. No recurring charges.

License: MIT TypeScript viem Base MCP

What This Is

A human connects their crypto wallet, signs a one-time EIP-2612 Permit (gasless β€” no transaction fee), and receives a session token. AI agents use this token in MCP requests to pay for tool calls with USDC on Base. The server settles each call on-chain via transferFrom.

No API keys. No recurring charges. No per-call wallet signatures. The permit is the policy.

This is the reference implementation used by mcpvot.xyz β€” an x402 payment facilitator for MCP servers. The open-source core (@mcp-agentic-wallet/core) is framework-agnostic and works with any MCP server or Next.js app.

Quick Start

1. Install the core library

Terminal
npm install @mcp-agentic-wallet/core viem

2. Use in your MCP server

server.ts
import { InMemoryStore, settleCall } from '@mcp-agentic-wallet/core';

const store = new InMemoryStore();

// In your MCP tool handler:
const token = req.headers.get('Session-Token');
const session = store.getSession(token);
if (!session) return new Response('Payment required', { status: 402 });

// Consume budget ($0.005 = 5000 atomic USDC units)
const result = store.consumeBudget(token, 5000n);
if (!result.ok) return new Response('Insufficient budget', { status: 402 });

// Settle on-chain
await settleCall(session.humanAddress, 5000n, {
  treasuryAddress: process.env.TREASURY_ADDRESS!,
  hotWalletKey: process.env.HOT_WALLET_PRIVATE_KEY,
});

return Response.json({ result: 'your data' });

3. Run the reference server

bash
git clone https://github.com/MCPVOT/mcp-agentic-wallet.git
cd mcp-agentic-wallet
npm install
cp .env.example .env.local  # Configure your treasury + hot wallet key
npm run dev

Visit http://localhost:3000/wallet to connect a wallet and authorize a session.

How It Works

Code
Human                          Server                        Agent
  β”‚                              β”‚                              β”‚
  │── connect wallet ──────────►│                              β”‚
  │── sign EIP-2612 Permit ───►│                              β”‚
  β”‚   (gasless, 1-time)           │── verify signature ──────►│ (on-chain)
  β”‚                              │── submit permit() ────────►│ (on-chain, gas)
  β”‚                              │── create session ──────────┐│
  │◄─ return session token β”€β”€β”€β”€β”€β”‚β—„β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜β”‚
  β”‚                              β”‚                              β”‚
  β”‚                              │◄── Session-Token header ────│
  β”‚                              │── consume budget ───────────┐│
  β”‚                              │── transferFrom() ──────────►││ (on-chain, gas)
  β”‚                              │── return tool data β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜β”‚
  β”‚                              │◄──────────────────────────────│

Core Library (@mcp-agentic-wallet/core)

Class/FunctionDescription
InMemoryStoreSession store (in-memory, pluggable for KV/Redis)
verifyPermit()Verifies EIP-712 Permit signature on-chain via viem
settleCall()Executes transferFrom(human, treasury, amount) on Base
submitPermit()Submits the permit() transaction to USDC contract
checkAllowance()Reads on-chain USDC allowance for an owner→spender pair
checkRateLimit()Simple rate limiter (per-wallet)
toSessionInfo()Converts session to safe client-facing info (no permit signature)

Security

See SECURITY.md for the full threat model.

Key features:

  • EIP-712 signature verification β€” server verifies every permit signature on-chain before creating a session
  • Allowance cap β€” max $100 USDC per session (configurable)
  • Deadline cap β€” max 30 days
  • Rate limiting β€” 5 authorizations per wallet per hour
  • Session revocation β€” humans can revoke anytime
  • Settlement debt tracking β€” sessions suspended after 3 failed settlements
  • Spender verification β€” EIP-712 verification inherently checks spender === treasury

Documentation

  • ARCHITECTURE β€” system diagram, payment flow, design decisions
  • MCP Integration β€” step-by-step guide for adding to any MCP server
  • Security Policy β€” threat model, attack vectors, production checklist
  • Contributing β€” dev setup, guidelines, PR process
  • Donations β€” support the project

Tech Stack

  • EIP-2612 (Permit) β€” gasless approval via typed data signature
  • EIP-712 β€” typed data signing and verification
  • USDC (FiatTokenV2) on Base Mainnet (chainId 8453)
  • viem β€” TypeScript Ethereum library
  • Next.js β€” reference server implementation
  • Model Context Protocol β€” MCP 2025-11-25 spec

Use Case: iRacing + Blockchain

MCPVOT uses this wallet to power on-chain sim-racing events:

  1. Host creates event β€” deploys an escrow smart contract on Base with entry fee + prize pool
  2. Drivers connect wallet β€” sign EIP-2612 Permit via this library, get a session token
  3. Drivers pay entry fee β€” transferFrom settles the entry to the escrow contract
  4. Race happens in iRacing β€” server polls iRacing Data API for finish order
  5. Smart contract auto-disburses β€” verified winners receive USDC/SOL from the prize pool

The iRacing MCP tools (get_race_results, lookup_driver, search_hosted_races) are available at mcpvot.xyz and use the same session-token flow for payment.

Configuration

Env VarRequiredDefaultDescription
TREASURY_ADDRESSYesβ€”Address that receives USDC payments
HOT_WALLET_PRIVATE_KEYYesβ€”EOA private key for gas (never commit to git!)
BASE_RPC_URLNohttps://mainnet.base.orgBase Mainnet RPC
NEXT_PUBLIC_TREASURY_ADDRESSYesβ€”Treasury shown in wallet UI

License

MIT β€” see LICENSE

Related MCP Servers

View all in Finance & Fintech View all alternatives
  • Mcp logoMcp

    x402 micropayments for AI agents β€” credits-based, no wallets, no blockchain.

    πŸ’° Finance & Fintech1 views
    Compare vs Mcp β†’
  • A
    Agent Wallet Mcp

    Agent wallet and budget management for AI agents

    πŸ’° Finance & Fintech0 views
    Compare vs Agent Wallet Mcp β†’
  • A
    ALTER Identity

    Psychometric identity verification for humans, queryable by AI agents over MCP. x402 micropayments.

    πŸ’° Finance & Fintech0 views
    Compare vs ALTER Identity β†’
  • Plugin logoPlugin

    Circulara Observe MCP plugin - meters your AI agents' token spend and carbon, free tier.

    πŸ’° Finance & Fintech0 views
    Compare vs Plugin β†’

Frequently Asked Questions about MCP Agentic Wallet β€” open Source session management for x402

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "mcp-agentic-wallet-open-source-session-management-for-x402": { "command": "npx", "args": ["-y", "MCP Agentic Wallet β€” open-source session management for x402"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewMCP Agentic Wallet β€” open Source session management for x402 AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/mcp-agentic-wallet-open-source-session-management-for-x402?style=directory)](https://allmcps.com/mcp/mcp-agentic-wallet-open-source-session-management-for-x402)
HTML Embed
<a href="https://allmcps.com/mcp/mcp-agentic-wallet-open-source-session-management-for-x402"><img src="https://allmcps.com/api/badge/mcp-agentic-wallet-open-source-session-management-for-x402?style=directory" alt="MCP Agentic Wallet β€” open Source session management for x402 on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’°Finance & Fintech
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
0/5 checks healthy over the last 6h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’° Finance & Fintech β†’Best MCP servers for Finance & Fintech β†’Alternatives to MCP Agentic Wallet β€” open Source session management for x402 β†’Install in Claude DesktopInstall in CursorInstall in VS Code