t2000-skills/skills/t2000-services/SKILL.md
Discover MPP services payable via `t2 pay`. Use when the user asks "what can I pay for?", "what AI models are available?", "show me the service catalog", "is there a weather API?", or any other discovery question. Pairs with the t2000-pay skill (discovery first, then pay).
npx skillsauth add mission69b/t2000 t2000-servicesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Browse the live MPP gateway catalog at mpp.t2000.ai to find a service that matches the user's intent (chat, image gen, search, weather, email, code exec, mail, etc.) before calling t2 pay. The catalog spans every major AI + data API, with per-call prices that vary by endpoint — always check the live catalog rather than assuming a fixed count or price.
t2 services search (CLI) or t2000_services (MCP) first. Service paths + pricing change as the gateway expands.openai/v1/chat/completions at $0.01 vs openai/v1/audio/speech at $0.05). Surface options.t2 pay write is opt-in via the user's own keypair — they deserve to know what they're spending.https://mpp.t2000.ai/api/services — what shows up via t2 services search is exactly what t2 pay can talk to.# Search by name / category / endpoint description (case-insensitive)
t2 services search <query> # default limit: 10
t2 services search <query> --limit 50 # broaden the result set
t2 services search "" # list everything (empty query)
# Inspect a single service or endpoint URL
t2 services inspect <service-or-endpoint-url>
# JSON output for scripting
t2 services search "image" --json
t2 services inspect <url> --json
The CLI uses T2000_GATEWAY_URL (or --gateway <url>) to override the gateway base URL — useful for local dev against apps/gateway.
t2 services search "chat"
Returns a table of chat services (OpenAI, Anthropic, Gemini, Mistral, Cohere, DeepSeek, Groq, etc.) with cheapest endpoint price + base URL.
t2 services inspect https://mpp.t2000.ai/openai
Returns every OpenAI endpoint with method + path + price + description. The user picks one (e.g. /v1/chat/completions at $0.01) and copies the URL into a t2 pay <url> call.
t2 services search "email"
t2 services inspect https://mpp.t2000.ai/resend
Lists email + messaging services; inspect Resend to see /v1/emails at $0.05.
3 services matching "chat":
OpenAI from $0.01 [ai, chat]
url https://mpp.t2000.ai/openai
about OpenAI Chat Completions API
Anthropic from $0.01 [ai, chat]
url https://mpp.t2000.ai/anthropic
about Claude messages API
Mistral from $0.005 [ai, chat]
url https://mpp.t2000.ai/mistral
about Mistral chat completions
Use `t2 services inspect <url>` to see pricing + endpoints for a service.
Service OpenAI
URL https://mpp.t2000.ai/openai
About OpenAI Chat Completions API
Categories ai, chat
Currency USDC on Sui
POST /v1/chat/completions $0.01 Chat completions (gpt-4o, gpt-4o-mini)
url https://mpp.t2000.ai/openai/v1/chat/completions
Pay with: `t2 pay https://mpp.t2000.ai/openai/v1/chat/completions`
{
"query": "chat",
"count": 3,
"services": [
{
"name": "OpenAI",
"serviceUrl": "https://mpp.t2000.ai/openai",
"description": "OpenAI Chat Completions API",
"categories": ["ai", "chat"],
"currency": "USDC",
"chain": "Sui",
"endpoints": [
{ "method": "POST", "path": "/v1/chat/completions", "price": "0.01", "description": "Chat completions" }
]
}
]
}
t2000_services tool)The MCP tool returns the full catalog JSON in one call (no search filter — the LLM filters in its head):
{
"services": [
{ "name": "OpenAI", "serviceUrl": "https://mpp.t2000.ai/openai", "endpoints": [...] },
{ "name": "Anthropic", "serviceUrl": "https://mpp.t2000.ai/anthropic", "endpoints": [...] },
...
]
}
For LLM-driven flows, this is the right shape — the LLM scans the catalog, picks the matching service, and calls t2000_pay <url> next.
The current catalog clusters into:
| Category | Services | |---|---| | AI / chat | OpenAI, Anthropic, Gemini, Mistral, Cohere, DeepSeek, Groq, … | | AI / image gen | fal.ai, Stability AI, OpenAI DALL-E, Replicate | | AI / audio | OpenAI Whisper, ElevenLabs, OpenAI TTS | | Search | NewsAPI, Brave, Exa, Serper, SerpAPI, Jina | | Weather / maps | OpenWeather, Google Maps | | Finance | CoinGecko, AlphaVantage, ExchangeRate | | Translation | DeepL, Google Translate | | Code / utility | Judge0, screenshot-as-a-service, QR codes, PDFShift | | Email / mail | Resend, Lob (postcards, letters, verify) | | Commerce | Hunter (email discovery) | | Security | VirusTotal | | Messaging | Pushover | | URL / IP | Short.io, IPinfo |
The categories above are a snapshot — the live source is
t2 services search ""(lists everything). New services land regularly.
| Error | Meaning |
|---|---|
| GATEWAY_UNREACHABLE | The gateway at mpp.t2000.ai/api/services is down or DNS is failing. Retry; if persistent, status page is at t2000.ai. |
| No services match | The search query returned zero hits. Suggest a broader query or t2 services search "" to list everything. |
| No service matches <url> (inspect) | The URL isn't in the catalog. Run t2 services search to find the right URL first. |
t2 services inspect and quote the exact price.t2 services search + t2 pay into a single hidden step. Show the user what you found before paying.tools
Set up a t2000 Agent Wallet end-to-end on the user's machine. Use when the user says "set up t2000", "install the wallet", "create my Agent Wallet", "connect t2000 to Claude / Cursor", or pastes a one-prompt install URL. Covers wallet creation, optional spending limits, and MCP wiring. Read this first when bootstrapping a new user; the other skills assume this has run.
development
Pay for an MPP-protected API service using the t2000 wallet. Use when asked to call an AI model, search the web, generate images, send email, buy gift cards, send physical mail, check weather, execute code, or any task that requires a paid API. Handles the full MPP 402 challenge automatically. Use t2000_services to discover all available services first.
development
Swap tokens on Sui via Cetus Aggregator (20+ DEXs, best-route across SUI, USDC, USDsui, USDT, USDe, ETH, GOLD, NAVX, WAL, vSUI, and more). Use when asked to swap, trade, convert, exchange, or "turn X into Y". Do not use for sending — use the t2000-send skill for transfers.
data-ai
Rebalance the wallet to a target allocation by executing multiple swaps in one atomic Payment Intent. Use when asked to rebalance, adjust allocation, "shuffle my positions", or move from one set of holdings to another. Every leg prices against the same on-chain snapshot — no cross-leg slippage drift; user signs once.