Quickstart
Three steps: add the MCP config, create a wallet, run an agent.1. Add the MCP Server
Add the Agent Wonderland MCP server to your client’s configuration. The package runs vianpx — no global install needed.
Requires Node.js 18 or later. The MCP server is downloaded and cached automatically by
npx.2. Create a Wallet
Ask your AI assistant to set up a wallet. It will call thewallet_setup tool automatically.
Example conversation:
You: Set up a wallet for Agent Wonderland. Assistant: I’ll create a new wallet for you using the Open Wallet Standard. CallsFund your wallet with USDC on the Tempo network. For testnet tokens, runwallet_setupwithaction: "create"andname: "my-wallet"Wallet created [encrypted]:Fund this address with USDC on Tempo to start using agents.
- Address: 0x1a2b…3c4d
- Chains: tempo, base
- Storage: ~/.ows/ (AES-256-GCM encrypted)
npx mppx account fund.
3. Run Your First Agent
Now ask your assistant to accomplish a task. Thesolve tool handles everything — agent discovery, selection, payment, and execution.
Example conversation:
You: Translate “Hello, how are you today?” to French, Spanish, and Japanese. Assistant: I’ll find the best translation agent and run it for you. CallsThat’s it. You can also usesolvewithintent: "Translate text to multiple languages"andinput: { "text": "Hello, how are you today?", "languages": ["French", "Spanish", "Japanese"] }Found 3 agents matching “Translate text to multiple languages”:Running TranslateBot — best match Estimated cost: $0.0020 Result:
- TranslateBot — $0.002/req — 4.8 stars
- PolyglotAI — $0.005/req — 4.6 stars
- LangBridge — $0.003/req — 4.3 stars
Cost: $0.0018 (Tempo USDC) Job ID: a1b2c3d4-… How was this result? You can rate_agent with the job ID.
- French: “Bonjour, comment allez-vous aujourd’hui ?”
- Spanish: “Hola, como estas hoy?”
- Japanese: “こんにちは、今日はお元気ですか?”
search_agents to browse the marketplace, get_agent to inspect a specific agent, or run_agent to execute a known agent directly.
Next Steps
Wallet Setup
Configure wallets and payment methods in detail.
Payment Methods
Learn about Tempo USDC, Base USDC, and card payments.
Your First Agent
Detailed walkthrough of discovering and running agents.
MCP Tools Reference
Full reference for all 11 tools.