Agent Payments with the Reevit MCP Server
@reevit/mcp is an MCP server that gives AI
agents scoped access to your Reevit account. The agent gets exactly the
permissions of the API key you mint — nothing more.
Quick start
Create an API key in the dashboard (Developers → API keys) with only the scopes the agent should have, then:Tools
| Tool | Scope required |
|---|---|
create_payment_link | payment_links:write |
get_payment, list_payments | payments:read |
create_refund | payments:write |
get_analytics_summary | payments:read |
Safety model
- Scopes are enforced by the Reevit backend on every call — a
payments:readkey cannot refund regardless of what the model asks. - Live-money gate: in live mode,
create_refundrefuses to run unless the call passesconfirm: true, forcing the agent to surface the decision. - Idempotency: money-moving calls carry an
Idempotency-Key, so retried tool calls can never double-charge or double-refund. - Start with a test-mode key (
REEVIT_MODE=test, the default).

