Skip to main content
Glama
abd3lraouf-studios

Google Play Console MCP

Delete User

delete_user

Remove a user's access to a Google Play developer account by specifying their email and developer ID. Confirmation is required before removal.

Instructions

Remove a user's access to a developer account.

Disabled in read-only mode.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYesEmail of the user to remove
confirmNo
developer_idYesDeveloper account ID
confirmation_tokenNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.0

TDQS

C2.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must carry the full behavioral disclosure burden. It states the destructive action and the read-only-mode restriction, but it does not mention that the deletion is likely irreversible, whether confirmation is required, or what side effects occur.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is short and every sentence contributes: the first states the purpose, the second warns about read-only mode. It is not padded, though it could afford slightly more detail without becoming verbose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a destructive tool with four parameters, no annotations, and a partial schema, the description is not complete enough. It omits the confirmation workflow, potential overlap with sibling delete_grant, and behavioral expectations, even though the output schema covers return values.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is only 50%, and the description adds no parameter-level meaning. The critical parameters confirm and confirmation_token are left undocumented in both the schema and the description, even though they likely control whether the deletion actually proceeds.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Remove a user's access') and the resource ('developer account'), so an agent can tell what the tool does. It does not explicitly distinguish itself from sibling tools like delete_grant or update_user, which could also affect user access.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to choose this tool over alternatives such as delete_grant or update_user. The note 'Disabled in read-only mode' is a restriction, not a usage directive, so the description leaves invocation context ambiguous.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools