t2000-services — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited t2000-services (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Browse the live x402 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> --jsonThe 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/openaiReturns 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/resendLists email + messaging services; inspect Resend to see /v1/emails at $0.05.
Live crypto prices, stock quotes, and forex are brokered through the gateway's Finance providers (CoinGecko, AlphaVantage, ExchangeRate) — t2000 doesn't host its own market-data API; it routes to these and bills per call in USDC. (Wallet reads like t2 balance stay amount-only on purpose — pricing is an explicit, opt-in paid call, not baked into balance.)
t2 services search "price"
t2 services inspect https://mpp.t2000.ai/coingeckoLists the Finance providers, then shows CoinGecko's endpoints with exact per-call price. Copy the endpoint URL into t2 pay <url> to fetch the quote. (For SUI-name resolution — the ENS analog — use t2 SuiNS resolution directly; it's in-house, not a paid service.)
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.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.