How to add purchasing to your AI agent in 60 seconds
Install the AgentMall Claude Code skill and give your agent the ability to buy products. One command, zero config.
If you use Claude Code, adding purchasing capabilities to your agent takes one command:
$ npx skills add agentmallsh/agentmallThat's it. Now type /agentmall and your agent can buy things.
What the skill does
When invoked, the skill:
- Detects your framework and package manager
- Constructs a purchase request with the product URL, shipping address, and budget
- Handles the MPP 402 payment challenge automatically
- Returns the order ID and status
Example
You: "/agentmall buy a SanDisk 64GB USB drive from Amazon, ship to 123 Main St SF CA 94105, max $25"
Claude:
- Finds the product on Amazon
- Confirms price ($24.99) is under budget
- Places order via AgentMall API
- Returns order ID jn7c0sya... status: submitted
No API keys
The skill uses MPP for payment. Your Tempo wallet handles authentication. No API keys to manage, no accounts to create.
Also works with MCP
Prefer MCP over skills? Add the AgentMall MCP server instead:
{
"mcpServers": {
"agentmall": {
"command": "npx",
"args": ["@agentmall/mcp"]
}
}
}Read more: https://www.agentmall.sh/skills