Skip to main content
Glama
kutleloove

google-cloud-console-mcp

by kutleloove

Delete service account key

gcp_delete_service_account_key

Revoke a Google Cloud service account key using its key ID and service account email to remove compromised or unused credentials from a project.

Instructions

Revokes a service account key by its key id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
emailYes
keyIdYes
projectIdNoGCP project id; defaults to GOOGLE_CLOUD_PROJECT env var

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.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 carries the full disclosure burden. It says 'revokes' but does not state that deletion is permanent/unrecoverable, what permissions are required, or what happens to workloads using the key. For a destructive mutation, 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.

Conciseness4/5

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

A single, front-loaded sentence with no filler. It is appropriately terse, though the brevity comes at the cost of the missing behavioral detail noted above.

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?

With 3 parameters, one required parameter (email) undocumented, no annotations, and no output schema, the description leaves real gaps: the agent knows what the tool does but not the effect, the auth requirements, or how email/keyId pair together.

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 coverage is only 33% (only projectId is described). The description clarifies keyId's meaning ('by its key id') but says nothing about the required email parameter, leaving the agent to infer both required inputs from bare names.

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?

States a specific verb (revokes) and resource (service account key) with the discriminating identifier (key id). This clearly separates it from gcp_list_service_account_keys and gcp_create_service_account_key. Sibling differentiation is achieved implicitly through the verb, though no sibling is named.

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?

No indication of when to use this tool versus alternatives, no prerequisites, and no warning that key revocation is irreversible for any application still using the key. Only the barest action statement is present.

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