Arbor
Enables AI agents to authorize food delivery purchases from DoorDash within budget and merchant restrictions.
Enables AI agents to authorize purchases from Figma within budget and merchant restrictions.
Enables AI agents to authorize purchases from GitHub within budget and merchant restrictions.
Enables AI agents to authorize purchases from Notion within budget and merchant restrictions.
Enables AI agents to authorize API credit purchases from OpenAI within budget and merchant restrictions.
Enables AI agents to authorize ride-sharing and delivery purchases from Uber within budget and merchant restrictions.
Enables AI agents to authorize purchases from Vercel within budget and merchant restrictions.
Arbor
Give your AI agent a wallet with rules it can't break.
Arbor is the authorization layer between an AI agent and real spending. Install it into any MCP-compatible agent, define your rules once — spending caps, approved merchants, time windows — and every purchase the agent attempts is checked against them in real time. Approved transactions go through. Anything outside the mandate is blocked, logged, and surfaced to you.
Your agent runs autonomously. You stay in control.
How It Works
You install Arbor into your agent
↓
You set a spending mandate once
↓
Agent runs autonomously
↓
Before every purchase attempt:
agent calls authorize_purchase
↓ ↓
✅ Approved ❌ Denied
Agent proceeds Agent stops,
reports to youArbor sits between your agent's intent and the actual transaction — it doesn't move money itself, it decides whether the agent is allowed to.
Related MCP server: pop-pay
Install Into Your Agent
First, grab your API key from agent-payment-eight.vercel.app.
Then pick your agent:
Hermes or OpenClaw (natural language)
Just paste this into your agent's chat — no CLI needed:
Install the AgentPay MCP server. My API key is <your-api-key>.Your agent will handle the rest automatically.
Claude / Cursor / Windsurf (Smithery)
npx @smithery/cli install advaitgore/payguard --client claudeWhen prompted, paste your API key.
Any MCP-compatible agent (manual config)
{
"mcpServers": {
"agentpay": {
"url": "https://agentpayment-production.up.railway.app/mcp",
"headers": {
"Authorization": "Bearer <your-api-key>"
}
}
}
}Once installed, tell your agent to set up a mandate:
"Set my spending limit to $50 per transaction. Approved merchants: Amazon, Vercel, GitHub."That's it. Your agent now has spending rules it evaluates autonomously before every purchase.
Real-World Examples
Personal assistant agent
"You have $50 tonight. Uber and DoorDash only. Go."
{
"daily_limit": 50,
"allowed_merchants": ["uber.com", "doordash.com", "ubereats.com"]
}Autonomous research agent
"$20 per run. API providers only."
{
"max_per_transaction": 20,
"allowed_merchants": ["openai.com", "serpapi.com", "anthropic.com"]
}Company expense agent
"$500/week. Approved SaaS vendors only."
{
"weekly_limit": 500,
"allowed_merchants": ["notion.so", "vercel.com", "github.com", "figma.com"]
}How the Agent Uses It
Once installed, your agent calls authorize_purchase before any spend:
{
"merchant": "openai.com",
"amount": 10.00,
"currency": "USD",
"description": "API credits for task execution"
}Approved — within mandate:
{
"status": "approved",
"transaction_id": "txn_01j9k2m...",
"amount": 10.00,
"merchant": "openai.com",
"remaining_budget": 40.00,
"message": "Purchase approved within mandate limits"
}Denied — merchant not on allowlist:
{
"status": "denied",
"reason": "merchant_not_allowed",
"message": "openai.com is not on the approved merchant list for this agent"
}What the agent should do:
approved→ proceed.denied→ stop and surface thereasonto the user. Never retry without updated mandate permissions.
Available Tools
Tool | What it does |
| Check a purchase against the agent's mandate — the core call |
| View current spending rules for this agent |
| Change limits or allowed merchants |
| Total spend by category and merchant |
| Full history of every authorize/deny decision |
| Rotate the agent's API key |
| Create a new user account + org |
| Provision a new agent under an org |
| Set spending rules for a newly created agent |
REST API
Interactive docs: https://agentpayment-production.up.railway.app/docs
Self-Hosting
git clone https://github.com/advaitgore/agent_payment
cd agent_payment
pip install -r apps/api/requirements.txt
uvicorn apps.api.main:app --host 0.0.0.0 --port 8080Required env vars:
DATABASE_URL=postgresql://...
JWT_SECRET=...This server cannot be installed
Maintenance
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/advaitgore/Arbor'
If you have feedback or need assistance with the MCP directory API, please join our Discord server