MCP Server

Agentic Terminal Directory

ai.agenticterminal/directory
Crypto & Web3 Payments & Fintech Public & reachable MCP 2025-11-25

What this MCP does

Searches and verifies merchants that accept agentic payment methods including Lightning, L402, BOLT12, and USDT.

get_merchant
Get the full record for one merchant including all rails, payment endpoints, and OP attestation. Tier 2+ requires an AT credential.
Input schema
{'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['id'], 'properties': {'id': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}
list_categories
List the category taxonomy with merchant counts.
Input schema
{'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}}
list_rails
List supported payment rails and their current merchant counts.
Input schema
{'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}}
search_merchants
Search OP-verified merchants by rail, chain, category, agent-callable tier, trust tier, and free text. Ranked by trust tier then verification recency.
Input schema
{'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {'rail': {'enum': ['lightning', 'bolt12', 'l402', 'usdt'], 'type': 'string'}, 'chain': {'enum': ['tron', 'ethereum', 'solana', 'bsc', 'polygon', 'arbitrum', 'base'], 'type': 'string'}, 'limit': {'type': 'integer', 'exclusiveMinimum': 0}, 'query': {'type': 'string'}, 'category': {'type': 'string'}, 'accepts_usdc': {'type': 'boolean'}, 'trust_tier_min': {'enum': [1, 2, 3], 'type': 'number'}, 'agent_callable_tier': {'enum': ['full-api', 'structured-handoff', 'human-checkout'], 'type': 'string'}}, 'additionalProperties': False}
verify_payment_endpoint
Run a live check against a merchant's declared payment endpoint for a rail. Returns health, detail, and rail-specific evidence.
Input schema
{'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'required': ['merchant_id', 'rail'], 'properties': {'rail': {'enum': ['lightning', 'bolt12', 'l402', 'usdt'], 'type': 'string'}, 'merchant_id': {'type': 'string', 'minLength': 1}}, 'additionalProperties': False}
whoami
Report the resolved credential state and rate limits for the calling agent.
Input schema
{'type': 'object', '$schema': 'http://json-schema.org/draft-07/schema#', 'properties': {}}
Added
whoami
2026年9月11日0:30
Added
list_rails
2026年9月11日0:30
Added
list_categories
2026年9月11日0:30
Added
verify_payment_endpoint
2026年9月11日0:30
Added
get_merchant
2026年9月11日0:30
Added
search_merchants
2026年9月11日0:30