> **Can't find what you're looking for?** Use `search_docs` on the docs MCP server at `https://mpp.dev/api/mcp` to find what you need.

# Use with agents \[Connect your agent to MPP-enabled services]

Agents can automatically interact with MPP-enabled services, paying for API calls without human intervention. Learn more about [agentic payments](/use-cases/agentic-payments) or get started below.

| Tool | Best for | Setup |
|------|----------|-------|
| [Tempo Wallet](#tempo-wallet) | MPP services with spend controls and service discovery | `tempo wallet login` |
| [Privy Agent CLI](#privy-agent-cli) | Multi-chain agent wallets with browser-based funding | `privy-agent-wallets login` |
| [AgentCash](#agentcash) | Discover and use 300+ premium APIs via MPP | `npx agentcash onboard` |
| [`mppx` CLI](#mppx) | Development and debugging | `mppx account create` |

## Tempo Wallet Recommended

The [Tempo Wallet](https://wallet.tempo.xyz) is a managed MPP client with built in spend controls and service discovery. Agents can use `tempo wallet` to discovery and pay for MPP-enabled services on demand.

### Agent

Paste this into your agent to set up Tempo Wallet:

```
Read https://tempo.xyz/SKILL.md and set up tempo
```

### Human

:::steps
### Install the CLI

```bash [terminal]
$ curl -fsSL https://tempo.xyz/install | bash
```

### Connect your wallet

```bash [terminal]
$ tempo wallet login
```

### Verify setup

```bash [terminal]
$ tempo wallet whoami
```

### List available services

```bash [terminal]
$ tempo wallet services
```

### Make a paid request

```bash [terminal]
$ tempo request -X POST \
  --json '{"prompt": "a sunset over the ocean"}' \
  https://fal.mpp.tempo.xyz/fal-ai/flux/dev
```
:::

## Privy Agent CLI

[Privy Agent CLI](https://docs.privy.io/recipes/agent-integrations/agent-cli) gives agents a CLI-first way to create, fund, and manage wallets with no integration code. It pairs with the [Agent Sandbox](https://agents.privy.io/) where users track agent spending, manage funds, and revoke access.

The agent never holds the wallet private key—each CLI session generates a P-256 keypair used to sign authorization payloads.

### Agent

Paste this into your agent to set up Privy Agent CLI:

```
Set up https://agents.privy.io/skill.md
```

### Human

:::steps
### Install

```bash [terminal]
$ npm install -g @privy-io/agent-wallet-cli
```

### Log in

```bash [terminal]
$ privy-agent-wallets login
```

This opens a browser flow—complete Privy auth, approve signer access, then paste the credential back into the terminal.

### Fund wallets

```bash [terminal]
$ privy-agent-wallets fund
```

### List wallets

```bash [terminal]
$ privy-agent-wallets list-wallets
```

### Send a transaction

```bash [terminal]
$ privy-agent-wallets rpc --json '{"method": "eth_sendTransaction", "params": {"to": "0xRecipient", "value": "0.01"}}'
```
:::

## AgentCash

[AgentCash](https://agentcash.dev) gives agents instant access to 300+ premium APIs for data enrichment, social data, image generation, web scraping, email, and much more, all through one USDC.e balance.

### Agent

Paste this into your agent to set up AgentCash:

```
Set up agentcash.dev/skill.md
```

### Human

:::steps
### Onboard and get free credits

Visit [agentcash.dev/onboard](https://agentcash.dev/onboard) to claim a sign-up bonus, then redeem in your terminal:

```bash [terminal]
$ npx agentcash onboard <CODE>
```

### Search for services

```bash [terminal]
$ npx agentcash search "image generation"
```

### Use a service

```bash [terminal]
$ npx agentcash fetch https://stableenrich.dev/api/exa/search \
    --method POST \
    --body '{"query":"agentcash.dev"}'
```

### Install as MCP server (optional)

```bash [terminal]
$ claude mcp add agentcash --scope user -- npx -y agentcash@latest
```
:::

## mppx

The [`mppx`](/sdk/typescript/cli) CLI is a lightweight MPP client bundled with the `mppx` package. It is designed for simple use cases and debugging during development.

::::steps
### Install

:::code-group
```bash [npm]
$ npm install -g mppx
```

```bash [pnpm]
$ pnpm add -g mppx
```

```bash [bun]
$ bun add -g mppx
```
:::

### Create an account

```bash [terminal]
$ mppx account create
```

### Make a paid request

```bash [terminal]
$ mppx https://mpp.dev/api/ping/paid
```
::::

## Next steps

[Services](/services) — Browse available MPP services and their endpoints

[Wallets](/tools/wallet) — Agent wallets, funding, and spend controls
