get_cookies
Retrieve cookies for a specified domain to enable authenticated requests or session management. Provide the domain to obtain its cookies.
Instructions
Get cookies
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| domain | No | Domain |
Retrieve cookies for a specified domain to enable authenticated requests or session management. Provide the domain to obtain its cookies.
Get cookies
| Name | Required | Description | Default |
|---|---|---|---|
| domain | No | Domain |
Changes observed during successful MCP inspections.
v0.3.0Does 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 only states the verb 'Get' without revealing any side effects, permissions, or nature of the returned data. It is not misleading but is essentially empty of behavioral information.
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 extremely brief, but this is under-specification rather than appropriate conciseness. It provides no useful structure or front-loaded context, making it unhelpful despite its brevity.
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?
With no output schema and no annotations, the description must explain what the tool returns and any relevant context. 'Get cookies' does not describe the return format, scope, or any dependencies, leaving the agent without enough information to use the tool correctly.
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 documents the 'domain' parameter as 'Domain' with 100% coverage. The description 'Get cookies' adds no further meaning to the parameter, so it does not enrich the schema. Baseline 3 applies because schema coverage is high.
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 'Get cookies' is a tautology of the tool name, providing no additional specificity about what cookies, from which context, or how it differs from siblings like get_credentials or get_csrf_token. It merely restates the name without distinguishing 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?
There is no guidance on when to use this tool versus alternatives, no mention of prerequisites, scenarios, or exclusions. The description gives zero context about selection conditions, leaving the agent to guess.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.