agent-gamma (AgentGamma)
Project Tollbooth: Paywalled MCP Server
Project Tollbooth is a Python-based FastAPI application acting as a Model Context Protocol (MCP) server over Streamable HTTP. It exposes pre-computed market regime data from a local Redis cache and monetizes access with two billing paths:
Pay-per-call via the official
x402payment protocol (USDC on Base) — zero-friction for anonymous agents.Prepaid credit packs via API keys — fast repeat access for high-frequency bots (no facilitator round-trip per call).
Core Features
Granular Payment Gating (fail-closed): Discovery methods (
initialize,ping,tools/list,resources/list,resources/templates/list,prompts/list,notifications/*) are free and public. Everything else onPOST /mcp/is billed. Unparseable bodies and unknown methods are gated, not bypassed.Official x402 V2 Integration: The async
x402SDK (PaymentMiddlewareASGI) handles the full challenge / EIP-3009 verification / settlement flow via a facilitator.Prepaid Credit Ledger: Atomic Redis-backed (Lua
GET+DECRBY) per-call decrement. Responses include anx-tollbooth-credits-remainingheader. Invalid keys or drained balances fall through to the x402 402 challenge.Free Error Pre-check: Calls for missing or stale regime data are answered free of charge — buyers never pay for "no data".
Batch Protection: Batches containing more than one billable call are rejected (prevents batch underpricing on per-call payment).
Fail-safe Configuration: Fails hard at startup on missing/invalid
BASE_WALLET_ADDRESS, and on Base Mainnet without an explicit facilitator URL.
Related MCP server: ThinChain
Environment Configuration
Variable | Description | Default |
| Required. Recipient address for USDC payments (validated format). | None (fails if unset) |
| CAIP-2 chain id: |
|
| Facilitator endpoint. Required on Mainnet (testnet defaults to | Derived (testnet only) |
| Redis connection string. |
|
| Staleness cutoff for cached regime data. |
|
| Per-call price in USDC atomic units (6 decimals). |
|
| Calls included in one prepaid pack. |
|
| Pack price in USDC atomic units. |
|
| Serve mocked regime data (testing only). | unset |
Installation & Setup
uv venv
uv pip install -r requirements.txt
export BASE_WALLET_ADDRESS="0xYourWalletAddress"
export X402_NETWORK="eip155:84532" # Base Sepolia for testing
# Populate the cache with schema v1.0 format (resolved canonical symbol, e.g. QQQ for NQ)
redis-cli set current_regime:QQQ '{"schema_version":"1.0","ticker":"QQQ","requested_as":"NQ","timestamp":'"$(date +%s)"',"source":"flashalpha","spot":700.81,"regime":{"gamma":"negative","volatility":"expansion","tilt":"GEX negative","consensus":"bearish_trend","gamma_flip":717.36,"distance_to_flip_pct":-2.31,"zero_dte_gex_share_pct":25.4},"exposures_usd":{"gex":-5.52e9,"dex":1.9771e10,"vex":-4.704e9,"charm":5.121e6},"volatility":{"atm_iv":30.73,"hv20":24.14,"hv60":21.72,"vrp":6.59,"put_iv_25d":46.87,"call_iv_25d":38.4,"skew_25d":8.47,"smile_ratio":1.221},"levels":{"call_wall":720.0,"put_wall":700.0,"gamma_flip_eod":717.13,"max_pain":691.0},"key_strikes":[{"strike":700.0,"net_gex_usd":-1.027e9,"call_oi":108108,"put_oi":286899}]}'
.venv/bin/uvicorn main:app --host 127.0.0.1 --port 8000Billing Flows
A. Pay-per-call (x402)
An agent without credentials calls the tool and receives a 402 with a base64 Payment-Required challenge header (scheme exact, network CAIP-2 id, USDC asset contract, atomic amount, payTo). It retries with a signed Payment-Signature header; the SDK verifies and settles via the facilitator.
curl -i -X POST http://127.0.0.1:8000/mcp/ \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","method":"tools/call","params":{"name":"get_market_regime","arguments":{"ticker":"NQ"}},"id":2}'
# -> HTTP/1.1 402 Payment Required + Payment-Required headerB. Prepaid credits (API key)
Buy a pack (this endpoint is itself x402-gated at the corresponding tier price):
Starter Pack:
$25.00 USDCfor 1,500 credits. Query parameter:?tier=starterGrowth Pack:
$95.00 USDCfor 7,000 credits. Query parameter:?tier=growthPro Pack:
$250.00 USDCfor 25,000 credits. Query parameter:?tier=proStandard Pack:
$150.00 USDCfor 10,000 credits. Query parameter:?tier=standard(or omit)
# Example: Purchase the Starter Pack
curl -i -X POST http://127.0.0.1:8000/credits/purchase?tier=starter
# -> 402 challenge at starter price ($25 USDC); pay via x402 client to receive:
# {"api_key": "tb_...", "credits": 1500, "price_paid_atomic_usdc": 25000000}Then call the tool with the key — no payment round-trip, balance returned per response:
curl -i -X POST http://127.0.0.1:8000/mcp/ \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "Authorization: Bearer tb_yourkey..." \
-d '{"jsonrpc":"2.0","method":"tools/call","params":{"name":"get_market_regime","arguments":{"ticker":"NQ"}},"id":2}'
# -> 200 OK + x-tollbooth-credits-remaining: 9999Check balance (free):
curl -s http://127.0.0.1:8000/credits/balance -H "Authorization: Bearer tb_yourkey..."Credit purchase settlement occurs after the handler returns. If a facilitator settle fails post-verification, a key may exist without final settlement — monitor settle failures before scaling.
Free discovery (no payment, no key)
curl -i -X POST http://127.0.0.1:8000/mcp/ \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","method":"tools/list","params":{},"id":1}'Testing
.venv/bin/python test_server.pyCovers: free discovery routes, 402 challenge schema, free-error pre-check, multi-paid batch rejection, gated credit purchase, unknown-key fall-through, and (when local Redis is running) funded-key decrement + drained-key fall-through.
Not yet covered: a real end-to-end paid call (signed Payment-Signature → verify → settle) — run one on Base Sepolia with a funded key before going to Mainnet.
Regulatory and Licensing Compliance
If your market regime cache contains pre-computed data derived from institutional feeds, inspect your data licensing agreement before reselling or exposing it through a public paywall. Many institutional data providers prohibit or heavily restrict commercial redistribution of derived metrics.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- -license-quality-maintenanceReal-time financial market data MCP server. Stocks, crypto, technicals, sentiment, FDA calendar. No API keys required.Last updated
- AlicenseBqualityBmaintenanceMCP server that sanitizes bad broker data and compresses 500-row options chains to strategy-specific slices for AI trading agents. 95% token reduction. Handles ghost quotes, inverted spreads, and impossible greeks automatically.Last updated3MIT
- AlicenseBqualityAmaintenanceAn MCP server that gives an LLM agent a typed, audited tool surface over quant crypto-options desk analytics: gamma exposure, vanna, skew, vol surface, options flow, technicals, portfolio greeks, scenario analysis, and live positions.Last updated221MIT
- Alicense-qualityDmaintenanceA production-grade MCP server that integrates Polygon.io market data with an 18-layer technical analysis engine to generate actionable options trading signals and high-probability playbooks.Last updated1MIT
Related MCP Connectors
Multi-tenant FastMCP server for Charles Schwab brokerage data, monetized via DPYC Tollbooth
Hosted MCP for stocks, options, Greeks, brokers, order previews, alerts, and workflows.
Real-time & historical options analytics: GEX, dealer positioning, greeks, SVI vol, VRP, 0DTE
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Longfortv5/project_tollbooth'
If you have feedback or need assistance with the MCP directory API, please join our Discord server