mcp-venmo
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-venmosend $15 to mom for the pizza"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
⚠️ DEPRECATED — DO NOT USE
Status: This connector has been pulled by Strider Labs as of June 5, 2026.
Why
This package automated Venmo / PayPal / Cash App access using browser automation with user credentials. We have concluded this is unsafe for users:
Terms of Service. Automated/unauthorized access violates the user agreements of these services.
Account suspension risk. These platforms can — and do — permanently suspend accounts they suspect of automation, and may freeze funds and linked bank accounts. Appeals are difficult or impossible.
Credential exposure. Storing financial-service credentials in MCP client configs creates an unacceptable security surface.
Regulatory category. Money-transmitter services operate under fraud-prevention regimes (BSA/AML) that are fundamentally hostile to bot traffic — different from commerce platforms.
Related MCP server: camofox-browser-mcp
Strider Labs policy
We do not ship credential-handover MCP connectors for regulated financial services. Strider Labs builds connectors for commerce platforms (food delivery, travel, reservations) that work with — not against — the operator's terms.
If you used this package
Stop running it.
Rotate your account password.
Review recent Venmo/PayPal/Cash App activity for anything you didn't authorize.
If your account was flagged, contact the platform's support — we cannot intervene.
What's next
We are evaluating safer architectures (OAuth-only, no credential handover, sanctioned partner APIs) for financial connectors. We will not re-publish browser-automation versions.
— Strider Labs, June 5, 2026
Available Tools
13 toolsvenmo_accept_requestA
Accept a pending payment request.
| Name | Required | Description | Default |
|---|---|---|---|
| requestId | Yes | ID of the payment request to accept |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It does not mention side effects (e.g., funds transfer, request removal), authentication requirements, irreversibility, or any other behavioral traits. This is a significant gap for a mutating action.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence, front-loaded with the action. Every word is useful and there is no fluff or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple nature of the tool (one parameter, no output schema), the description is minimally sufficient. However, the lack of any behavioral context (e.g., effects, preconditions) means it is not fully complete for an agent to safely invoke without further information.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema fully documents the single parameter 'requestId', so baseline is 3. The description adds no extra meaning beyond what the schema already provides, but does not need to compensate due to high coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Accept a pending payment request' uses a specific verb and resource, clearly distinguishing it from sibling tools like 'decline_request' or 'request_payment'. It precisely identifies the action and target.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool (when there is a pending payment request), but provides no explicit guidance on when not to use it or alternatives like declining the request. It offers minimal context beyond the verb.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
venmo_add_friendB
Send a friend request to a Venmo user.
| Name | Required | Description | Default |
|---|---|---|---|
| username | Yes | Venmo username to add as a friend (without @) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It identifies the action as sending a friend request but provides no information about authentication requirements, error states, idempotency, or whether the friend request is immediate or requires approval. This is a significant gap for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with no filler or redundant information. Every word contributes to understanding the tool's purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is a mutation with no output schema and no annotations. While the single parameter is well-documented, the description omits critical behavioral context such as authentication, possible failure modes, and whether the action is reversible. The minimalism leaves the agent under-informed for a state-changing operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers the only parameter with a clear description ('Venmo username to add as a friend (without @)'), so schema coverage is 100%. The tool description itself adds no parameter information, but the schema fully compensates, yielding the baseline of 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's action: 'Send a friend request to a Venmo user.' This is a specific verb+resource combo that distinguishes it from sibling tools like accept_request/decline_request (which handle incoming requests) and get_friends (which lists existing friends).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the use case (initiating a friend request) through its wording, but it does not explicitly state when to prefer this over alternatives, nor does it mention prerequisites like being logged in or the target user existing. Usage is inferred rather than directed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
venmo_decline_requestA
Decline a pending payment request.
| Name | Required | Description | Default |
|---|---|---|---|
| requestId | Yes | ID of the payment request to decline |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations, so the description carries the full burden. It only states the action without disclosing side effects, irreversibility, permissions, or what happens after declining. This lacks necessary transparency for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with zero wasted words. It immediately conveys the action and target.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple, with one well-documented parameter and no output schema. The description is workable but lacks behavioral context such as reversibility, conditions, or side effects. It is minimally complete but not rich enough for a 5.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already fully documents the single parameter 'requestId' with a clear description. The tool description adds no additional parameter semantics, so baseline 3 applies due to high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'Decline' and a clear resource 'pending payment request', which distinctly identifies the action. It differentiates from siblings like venmo_accept_request and venmo_request_payment.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use this tool (to decline a pending request) but gives no explicit guidance on when not to use it or alternatives. The presence of venmo_accept_request as a sibling suggests the opposite use, but the description does not mention it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
venmo_get_balanceA
Check your current Venmo balance.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It does not state whether this is a read-only operation, whether authentication is required, or what the response looks like. 'Check' implies read-only, but this is not explicitly confirmed, and no extra behavioral context is added.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, front-loaded sentence that directly states the function. No wasted words or redundant information. Effective for a simple tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple, but the description is minimal. There is no output schema and no annotations, so the description should ideally mention that the balance is returned or that prior login is required. The omission of authentication context and return value leaves gaps, though the core purpose is clear.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, and the schema is empty. Per the rubric, a baseline of 4 is appropriate since there are no parameters to document. The description clarifies that the operation is a balance check, adding some semantic context beyond the empty schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Check') and resource ('current Venmo balance'), clearly distinguishing it from sibling tools like venmo_get_transactions or venmo_get_friends. The intent is unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance is given about when to use this tool versus alternatives, but the purpose is self-evident as the name and description clearly indicate it is for balance inquiries. It implies usage but does not state exclusions or prerequisites like needing to be logged in.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
venmo_get_cardsA
View your linked debit cards, credit cards, and bank accounts.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of disclosing behavior. 'View' clearly indicates a read-only operation with no side effects. It doesn't explicitly mention authentication, but the possessive 'your' implies personal data access, which is sufficient for a trivial getter.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, front-loaded sentence that fully conveys the tool's purpose without any unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only tool with no parameters and no output schema, this description is complete: it states exactly what the user will see. There are no missing details that could affect invocation or interpretation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are zero parameters, so schema coverage is 100% and no parameter documentation is needed. The description adds value by enumerating the types of data returned (cards and bank accounts), aiding the agent in knowing what to expect.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'View' and enumerates the exact resources: linked debit cards, credit cards, and bank accounts. This clearly distinguishes it from sibling tools like venmo_get_balance or venmo_get_transactions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The context is clear: use this tool to view linked payment methods. It doesn't explicitly mention alternatives or exclusions, but the sibling tools are obviously different in function, making the usage context unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
venmo_get_friendsB
List your Venmo friends.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of friends to return. Defaults to 50. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must fully disclose behavior. It only states 'List your Venmo friends' without mentioning authentication, pagination, the impact of the limit parameter, or the return structure. This leaves the agent under-informed about the tool's runtime behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence with no redundant words. It is appropriately sized for a simple list operation, making it easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with one optional parameter and no output schema, but the description lacks any detail about the response format or behavioral nuances like pagination. While the schema covers the limit default, the description could still benefit from a brief note on what the return value contains.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description does not mention the limit parameter, but the input schema provides complete documentation (including the default of 50). Since schema coverage is 100%, the description adds little beyond the schema, which is acceptable but not value-adding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'List' and identifies the resource as 'your Venmo friends,' which clearly communicates the core function. It distinguishes this from sibling tools like search_users or add_friend, though it does not explicitly name alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives, such as using search_users to find new people or get_transactions for activity. There is no mention of exclusions or prerequisites, leaving the agent to infer from the name and sibling context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
venmo_get_notificationsA
View your pending payment requests and recent notifications.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description is the sole source of behavioral disclosure. The word 'View' implies a safe, read-only operation, which is helpful but vague. It does not mention whether viewing marks notifications as read, whether pagination applies, or any other behavioral detail beyond the obvious.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that gets straight to the point. It is front-loaded with the action and object, with no wasted words or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a very simple tool with no parameters, no output schema, and no annotations. The description adequately covers its purpose for such a low-complexity tool. Some may argue that the return format or notification types could be mentioned, but given the minimal surface area, the description is sufficiently complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool accepts zero parameters, so there is nothing to explain. Per the rubric, a baseline of 4 applies when there are no parameters. The description adds no parameter information, but none is needed.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'View' and names the resource: 'pending payment requests and recent notifications.' This clearly distinguishes it from sibling tools like venmo_get_transactions (which lists transactions) and venmo_get_balance, making the purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. The description simply states the function without mentioning exclusions or recommending it over other tools (e.g., venmo_get_transactions). The context of sibling tools is present but not leveraged in the description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
venmo_get_transactionsA
View your Venmo transaction history (payments sent, received, and requests).
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of transactions to return. Defaults to 20. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description indicates a read-only nature via 'View' and specifies included transaction types, but it omits details like ordering, pagination behavior, or handling of pending requests. It partially covers the transparency burden but leaves gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with a clear action and resource. The parenthetical adds relevant detail without unnecessary words, making it highly concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity and full schema coverage, the description covers the main purpose and data scope. However, it lacks details on return format or ordering. With no output schema or annotations, it is adequate but not exhaustive.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The only parameter `limit` is fully described in the input schema (defaults to 20), achieving 100% schema coverage. The description adds no further parameter semantics, so the baseline 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'View' with a clear resource 'Venmo transaction history' and enumerates contents (payments sent, received, requests). This distinguishes it from sibling tools like get_balance or send_payment.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies a read-only history use case but does not explicitly state when to use it or mention alternatives. No exclusions or alternative tool references are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
venmo_loginA
Log in to Venmo with your username/email/phone and password. Required before all other operations. Optionally reads VENMO_USERNAME and VENMO_PASSWORD from environment variables.
| Name | Required | Description | Default |
|---|---|---|---|
| password | No | Venmo account password. Falls back to VENMO_PASSWORD env var. | |
| username | No | Venmo username, email, or phone number. Falls back to VENMO_USERNAME env var. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the transparency burden. It discloses the env var fallback behavior and the prerequisite ordering, which is helpful. However, it doesn't describe what 'log in' does internally (e.g., session creation, credential storage, error conditions), leaving some behavioral aspects ambiguous.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences, front-loaded with the core purpose. The first sentence is an imperative that clearly states the tool's function, and the second sentence adds the env var behavior without waste. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple login tool with two parameters and no output schema, the description covers the essential aspects: what it does, when it's required, and parameter fallbacks. It doesn't detail session management or post-login state, but given the tool's simplicity, this is reasonably complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, with each parameter already detailing the env var fallback. The description adds no new parameter information beyond restating the fallback, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Log in to Venmo with your username/email/phone and password' with a specific verb and resource. It also distinguishes from all sibling venmo_* tools by noting it is 'Required before all other operations', making its purpose unmistakable.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says 'Required before all other operations', which clearly communicates when to use this tool. It doesn't mention alternatives or when not to use it, but since it's a login prerequisite, the ordering guidance is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
venmo_request_paymentC
Request money from a Venmo user.
| Name | Required | Description | Default |
|---|---|---|---|
| note | Yes | Description / reason for the request | |
| amount | Yes | Amount in USD to request (e.g. 25.00) | |
| audience | No | Visibility of the transaction. Defaults to private. | |
| recipient | Yes | Venmo username to request money from (without @) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It only says 'Request money' and does not mention that this creates a pending request requiring acceptance, notifications to the recipient, or any side effects. This is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that directly states the tool's purpose. It contains no fluff and is appropriately sized for a simple tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description lacks essential context about the transactional nature of the request (e.g., it needs recipient approval, is not an immediate transfer). Given the tool has 4 parameters and no output schema or annotations, the description is too sparse to fully inform the agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already provides descriptions for all four parameters (100% coverage), so the description adds no additional parameter semantics. The baseline of 3 applies since the schema fully documents the parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Request money from a Venmo user' clearly states the action and target. It distinguishes the tool from siblings like venmo_send_payment only implicitly through the verb 'request', but doesn't explicitly mention the difference.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives like venmo_send_payment, venmo_accept_request, or venmo_decline_request. The description only states the function, leaving the agent to infer context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
venmo_search_usersA
Search for Venmo users by name or username.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Name or username to search for |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations provided, so the description must carry the full burden of behavioral disclosure. It only states the basic action without mentioning what results are returned, whether authentication is required, if partial matches are allowed, or any other behavioral details. This is a significant gap for a search tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clear sentence that front-loads the action and resource. There is no wasted verbiage, and it is appropriately sized for a simple search tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity and lack of output schema, the description should at least indicate what the search returns or any relevant constraints. It only states the search function and leaves the agent guessing about result format or behavior. This is incomplete for safe and correct usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already provides 100% coverage with a description for the 'query' parameter ('Name or username to search for'). The tool's description essentially repeats this information without adding extra meaning, examples, or constraints. Baseline 3 is appropriate since the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'Search' and identifies the resource 'Venmo users' with the search criterion 'by name or username'. This clearly distinguishes it from sibling tools like venmo_send_payment or venmo_get_balance, which perform different actions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies the tool is for finding users, which is a prerequisite for actions like adding friends or sending payments. While it doesn't explicitly list alternatives or exclusions, the context is clear enough that an agent knows when to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
venmo_send_paymentA
Send money to a Venmo user. Requires a recipient username, amount in USD, and a note describing the payment.
| Name | Required | Description | Default |
|---|---|---|---|
| note | Yes | Description / note for the payment | |
| amount | Yes | Amount in USD to send (e.g. 10.50) | |
| audience | No | Visibility of the transaction. Defaults to private. | |
| recipient | Yes | Venmo username of the recipient (without @) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It only states the action and required fields, without disclosing that this is a financial transaction that debits the sender's account, is irreversible, or may have error conditions. This lack of behavioral detail is significant for a money-transfer tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, focused sentence that front-loads the main purpose and requirements without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
There is no output schema and no annotations. The description does not mention the response format, error handling, or consequences of the transaction. For a financial action like sending money, the description is underspecified and leaves an agent without critical context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides 100% coverage with descriptions for all parameters. The description repeats the required parameters but adds minimal new meaning beyond the schema, such as clarifying 'amount in USD' (already specified in the schema).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Send money to a Venmo user,' which is a specific verb and resource. It distinguishes from sibling tools like venmo_request_payment (which requests money) and venmo_transfer_to_bank (to bank).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context: the tool is for sending money and requires a recipient username, amount, and note. It does not explicitly mention alternatives or exclusions, but the purpose is unambiguous enough for an agent to select it correctly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
venmo_transfer_to_bankA
Transfer your Venmo balance to a linked bank account. Omit amount to transfer the full balance.
| Name | Required | Description | Default |
|---|---|---|---|
| amount | No | Amount in USD to transfer. Omit to transfer full balance. | |
| bankId | No | ID of the bank account to transfer to (if multiple are linked) | |
| transferSpeed | No | Transfer speed. 'instant' arrives within 30 minutes (fee may apply), 'standard' takes 1-3 business days. Defaults to standard. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It doesn't mention that this is a state-changing financial transaction, potential fees, reversibility, or the need for authentication. It only hints at the prerequisite of a linked bank account. This lack of transparency is significant for a money-moving tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that states the core action and a key usage note. Every word earns its place; there is no redundant or filler content. It is concise without sacrificing clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a financial transfer tool with no output schema and no annotations, the description should provide more context about prerequisites, side effects, fees, and expected return behavior. It doesn't mention transfer speed options or fees (which are only in the schema), nor does it explain what a successful transfer returns or what error scenarios might arise. The description is under-specified for the complexity of the operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already fully documents all three parameters. The description's only parameter-related note, 'Omit amount to transfer the full balance,' duplicates the schema's amount description and adds no new meaning. The baseline of 3 is appropriate since the description offers marginal value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Transfer your Venmo balance to a linked bank account.' This specifies the verb, resource, and scope, effectively distinguishing it from sibling tools like venmo_send_payment or venmo_get_balance. The additional note about omitting the amount clarifies the behavior of transferring the full balance, further sharpening the purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context that this tool is for withdrawing funds to a bank account, which sets it apart from other Venmo tools. However, it doesn't explicitly mention when to use this over alternatives (e.g., 'use this instead of send_payment to withdraw cash') or state prerequisites like having a linked bank account. The context is clear but not fully explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
13 tool updates
v0.1.0- First observed
venmo_accept_request - First observed
venmo_add_friend - First observed
venmo_decline_request - First observed
venmo_get_balance - First observed
venmo_get_cards - First observed
venmo_get_friends - First observed
venmo_get_notifications - First observed
venmo_get_transactions - First observed
venmo_login - First observed
venmo_request_payment - First observed
venmo_search_users - First observed
venmo_send_payment - First observed
venmo_transfer_to_bank
TDQS
Each tool targets a distinct Venmo operation—payments, requests, transactions, friends, cards, transfers, and login—so an agent can easily select the right one. Minor overlap between get_transactions and get_notifications is resolved by their focused descriptions.
All tools follow a consistent 'venmo_verb_noun' pattern (e.g., venmo_get_balance, venmo_send_payment, venmo_accept_request) with clear, action-first verbs and no style mixing.
At 13 tools, the server is well-scoped for a Venmo integration, covering authentication, balance, payments, requests, transactions, friends, cards, and bank transfers without excessive granularity.
Core Venmo workflows are fully covered: send/request money, view balance and transactions, manage friends, and transfer to bank. Slight gaps include no explicit accept/decline for friend requests and no logout, but these are edge cases, not critical dead ends.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
A paid remote MCP for AI agent browser approval MCP, built to return verdicts, receipts, usage logs,
Browser MCP for logged-in tasks. Uses your Chrome — credentials stay local. Zero-token replay.
A paid remote MCP for AI agent browser DevTools MCP, built to return verdicts, receipts, usage logs,
MCP server to assist with JxBrowser development.
Related MCP Servers
- AlicenseAqualityBmaintenanceMCP server for browser automation with anti-detection. Scout pages, find elements, interact with websites, and monitor network traffic from any AI client that supports the Model Context Protocol.211MIT
- AlicenseNot gradedqualityBmaintenanceMCP server for controlling a local camofox-browser instance, enabling LLM agents to perform web automation tasks such as navigation, interaction, snapshotting, and content extraction.43MIT
- AlicenseBqualityDmaintenanceBrowser automation MCP server using Camoufox anti-detect browser with fingerprint spoofing, geolocation/timezone spoofing, and human-like cursor movement.141Apache 2.0

sendblue-browserofficial
AlicenseNot gradedqualityDmaintenanceMCP server that wraps sendblue-browser-use's HTTP API, providing tools to control a stealth-patched Chromium browser with persistent sessions, navigation, screenshots, and script execution.3MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/markswendsen-code/mcp-venmo'
If you have feedback or need assistance with the MCP directory API, please join our Discord server