data
Venmo MCP, CLI, and Lua Integration for AI Agents
Venmo integration docs for AI agents: MCP gateway setup, Venmo CLI commands, Lua API reference, credentials, and function schemas.Venmo for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
venmo.venmo_list_payments | Read read | 4 | List Venmo payments with optional filtering. Supports pagination with limit and offset parameters. |
venmo.venmo_get_payment | Read read | 1 | Retrieve a Venmo payment by ID. Returns full payment details including amount, status, note, sender, and recipient. |
venmo.venmo_create_payment | Write write | 4 | Create a Venmo payment. Specify amount, recipient user ID, an optional note, and audience visibility. |
venmo.venmo_list_users | Read read | 3 | List Venmo users with optional filtering. Supports search by username, email, or phone and pagination. |
venmo.venmo_get_user | Read read | 1 | Retrieve a Venmo user by ID. Returns user profile details including username, display name, and profile picture. |
venmo.venmo_list_transactions | Read read | 5 | List Venmo transactions with optional filtering. Supports filtering by date range, action type, and pagination. |
venmo.venmo_get_current_user | Read read | 0 | Get the currently authenticated Venmo user. Returns the authenticated user's full profile including balance and account details. |