# MPP Services > MPP-enabled APIs your agent or application can seamlessly use. > Docs: https://mpp.dev/overview > Full reference: https://mpp.dev/llms-full.txt ## Tempo Wallet Tempo Wallet CLI is a command-line HTTP client with built-in MPP payment support. Install: $ curl -fsSL https://tempo.xyz/install | bash Log in (connects your Tempo wallet): $ tempo wallet login Make a request (payment handled automatically): $ tempo request https://openai.mpp.tempo.xyz/v1/chat/completions \ -X POST --json '{"model":"gpt-4o","messages":[{"role":"user","content":"Hello"}]}' Preview cost without paying: $ tempo request --dry-run https://openai.mpp.tempo.xyz/v1/chat/completions ## API Programmatically discover services: GET https://mpp.dev/api/services Returns JSON with all services, endpoints, and pricing. ## Services ```json [{"id":"llm","name":"LLM Gateway","serviceUrl":"https://services.cyberpay.org/llm","description":"30+ models (Claude, GPT, Gemini, DeepSeek, Grok, Llama, Qwen, Mistral). Per-call pricing, 40% markup over OpenRouter.","categories":["ai"]},{"id":"tts","name":"Fish Audio TTS","serviceUrl":"https://services.cyberpay.org/tts","description":"Text-to-speech with multiple Chinese and English voices.","categories":["media"]},{"id":"media","name":"fal.ai Media","serviceUrl":"https://services.cyberpay.org/media","description":"AI image generation (FLUX) and video generation (Wan 2.1).","categories":["media"]},{"id":"search","name":"Perplexity Search","serviceUrl":"https://services.cyberpay.org/search","description":"AI-powered deep research and web search.","categories":["search"]},{"id":"email","name":"Lumio Email","serviceUrl":"https://services.cyberpay.org/email","description":"Disposable inboxes, verification code extraction, agent email, and custom domain sending for AI agents.","categories":["social"]},{"id":"sms","name":"Lumio SMS","serviceUrl":"https://services.cyberpay.org/sms","description":"Virtual phone numbers, SMS verification codes, and two-way messaging for AI agents.","categories":["social"]},{"id":"host","name":"Lumio Host","serviceUrl":"https://services.cyberpay.org/host","description":"KYC-free decentralized compute. Deploy containers on Akash, Fly, Railway, or Phala with USDT.","categories":["compute"]},{"id":"relayer","name":"Lumio Relayer","serviceUrl":"https://services.cyberpay.org/relayer","description":"Multi-chain transaction relayer. Submit, sign, and monitor transactions on Solana, EVM, and Stellar.","categories":["blockchain"]}] ```