V
Venmo
Integrates with Venmo for sending money, requesting payments, searching users, and managing transactions.
Share:
About
Integrates with Venmo for sending money, requesting payments, searching users, and managing transactions.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Venmo.
- What is the Venmo MCP?
- The Venmo MCP integrates with Venmo services. It enables sending money, requesting payments, searching users, and managing transactions directly through an MCP client.
- How do I install the Venmo MCP in an MCP client?
- Installation in an MCP client typically involves specifying the Venmo MCP's repository URL. For example, in Cline, use cline mcp install https://github.com/aaymeloglu/venmo-mcp.
- Does the Venmo MCP require an API key or other credentials?
- Authentication for the Venmo MCP is listed as 'none'. This implies it may not require explicit API keys or OAuth setups, or that authentication is handled by the underlying Venmo service transparently.
- What are the core capabilities of the Venmo MCP?
- The Venmo MCP provides functionalities for financial transactions and user management. Key capabilities include initiating payments, requesting funds, locating users, and overseeing transaction history.
- What is a known limitation of the Venmo MCP?
- The Venmo MCP uses 'stdio' for transport. This means it communicates via standard input/output streams, which might limit its integration options or performance in certain distributed environments.
Install Venmo
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"venmo": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-venmo"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"venmo": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-venmo"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"venmo": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-venmo"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.