t2000
Developer hub

Documentation

Everything you need to integrate t2000 into your agent, app, or workflow. Five packages, one stack.

Quick start
1 — Install
npm i -g @t2000/cli
2 — Initialize wallet
t2000 init
3 — Add to your AI client’s MCP config
{ "mcpServers": { "t2000": { "command": "npx", "args": ["-y", "@t2000/mcp@latest"] } } }
Paste into Claude Desktop, Cursor, Cline, or any MCP client. This is a config snippet, not a terminal command — the AI client launches the server automatically over stdio.
4 — Verify (optional)
printf '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"t","version":"1"}}}\n' \ | npx -y @t2000/mcp@latest
A healthy server replies with "serverInfo":{"name":"t2000"...} and exits.
Capabilities
26
Engine tools
18 read + 8 write
12
Safety guards
balance, HF, slippage, USD, ...
8
Skills (MCP prompts)
setup, send, swap, pay, services, ...
8
Canvas templates
yield, health, portfolio, ...
Packages

CLI

@t2000/cli

Agent Wallet for AI agents on Sui. Gasless USDC + USDsui sends, Cetus swaps, MPP paid API access, MCP install in one command.

Usage
$ t2 init
$ t2 balance
$ t2 send 5 USDC alice.sui
$ t2 swap 100 USDC SUI
$ t2 pay <mpp-url>
$ t2 mcp install
npm i -g @t2000/cli

SDK

@t2000/sdk

TypeScript SDK for Agent Wallets. Plain Bech32 wallets, gasless send, Cetus swap, MPP pay. Programmatic DeFi (save/borrow/withdraw) for consumer apps like Audric.

Usage
$ import { T2000 } from '@t2000/sdk'
$ const { agent } = await T2000.init()
$ await agent.send({ to, amount, asset })
$ await agent.swap({ from, to, amount })
npm i @t2000/sdk

MCP

@t2000/mcp

9 tools + 8 skill prompts. Connect Claude Desktop, Cursor, Windsurf, or any MCP client. Stdio transport, spending limits honored.

Tools (29)
$ t2000_balance · t2000_send · t2000_swap
$ t2000_pay · t2000_services_search
$ skill-t2000-setup · skill-t2000-send
$ skill-t2000-swap · skill-t2000-pay · +4 more
t2 mcp install

Engine

@t2000/engine

Reasoning engine for financial agents. 26 tools, adaptive thinking, 12 safety guards, memory layer (MemWal), canvas, streaming. Powers Audric Intelligence.

Reasoning pipeline
$ 1. classify effort (low/medium/high/max)
$ 2. recall memory (MemWal top-K facts)
$ 3. run guards (12 across 3 priority tiers)
$ 4. execute tools (26: 18 read / 8 write)
$ 5. yield pending_action for write approval
npm i @t2000/engine

Gateway

mpp.t2000.ai

Pay-per-use API gateway for agents. Every major AI + data API. No API keys — pay per request with USDC. Reputation tiers.

Endpoints
HTTP 402 → pay $0.01 → 200 OK
GET /api/services
POST /openai/chat/completions
POST /anthropic/messages
POST mpp.t2000.ai/{service}/{endpoint}
Resources