finance
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.
7 functions 6 read 1 write Manual OAuth token auth
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.
Machine-Readable Metadata
- integration_slug
venmo- route_slug
venmo- package
venmo- auth_strategy
oauth2_manual_tokenManual OAuth token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Venmo CLIHeadless setup and direct function calls. Venmo MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Venmo MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Venmo.
Claude Code Venmo MCP setup for Claude Code. Cursor Venmo MCP setup for Cursor. Codex Venmo MCP setup for Codex. OpenAI Agents Venmo MCP setup for OpenAI Agents SDK. Claude Agent SDK Venmo MCP setup for Claude Agent SDK. Vercel AI SDK Venmo MCP setup for Vercel AI SDK. LangChain Venmo MCP setup for LangChain. LangGraph Venmo MCP setup for LangGraph. CrewAI Venmo MCP setup for CrewAI. MCP clients Venmo MCP setup for Generic MCP Clients.
Venmo CLI Matrix
Use these pages for direct Venmo CLI workflows in scripts, CI, cron, and agent wrappers.
CI Venmo CLI for CI. Cron Jobs Venmo CLI for cron jobs. Shell Scripts Venmo CLI for shell scripts. Headless Automation Venmo CLI for headless automation. Coding Agents Venmo CLI for coding agents.
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. |