Skip to main content
Glama
partnerhbhl

FireKey MCP Server

by partnerhbhl

profile_delete_cache

Clear selected cache types (cookies, history, local storage) from browser profiles to free space or fix loading problems.

Instructions

Delete cached data for browser profiles (cookies, history, localStorage, etc.).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeYesCache types to delete
profile_idYesArray of profile IDs

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.3

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full behavioral burden. It clearly discloses the destructive nature of the operation and names data categories that get destroyed, but it does not mention permanence, side effects like forced logout, or any required conditions.

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

Conciseness5/5

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

The description is a single front-loaded sentence with no filler. It communicates the action, resource, and scope efficiently while the examples remain useful.

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

Completeness4/5

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

For a two-parameter tool with a fully documented schema, the description plus schema are sufficient for an agent to construct a valid call. Information about return values or side effects is absent but not necessary for correct invocation.

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

Parameters3/5

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

Schema description coverage is 100%, so the schema already documents both profile_id and type with enum values. The description repeats some enum items ('cookies', 'history', 'localStorage') but adds no additional semantic value beyond the schema.

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

Purpose5/5

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

The description uses a specific verb ('Delete') and resource ('cached data for browser profiles') with concrete examples. It clearly distinguishes this from siblings like profile_delete (deleting entire profiles) and profile_cookies (cookie-related operations).

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

Usage Guidelines3/5

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

The description implies that the tool is used when cache data must be cleared, but it does not explicitly state when to use it versus alternatives such as profile_delete or profile_update. No exclusions or prerequisites like stopping the browser are mentioned.

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