Skip to main content
Glama
kitepon

Chrome Ops MCP

by kitepon

content_setting_set

Configure per-site Chrome content settings for cookies, JavaScript, popups, and more. Specify a site pattern and choose allow, block, ask, or session_only to control browser behavior.

Instructions

Set a per-site Chrome content setting using the extension API.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
kindYes
settingYes
primaryPatternYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0-alpha.0

TDQS

C2.6/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 burden of behavioral disclosure. It indicates a mutation ('Set') but does not state side effects, whether an existing setting is overwritten, permission requirements, or failure behavior. This is a minimal disclosure with no detail beyond the action itself.

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 a single, front-loaded sentence with no redundant phrasing. It states the action, scope, and mechanism efficiently. It is under-specified in other dimensions, but as far as conciseness goes, it wastes no words.

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

Completeness1/5

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

For a tool with three required parameters, no annotations, and no output schema, the description is far too thin. An agent cannot determine the format of primaryPattern, the significance of each setting value, whether changes are reversible, or what the response looks like. This is inadequate for correct invocation.

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 0%, so the description needs to compensate for the parameters. It only hints at 'per-site' (primaryPattern) and 'content setting' (kind), but does not explain the 'setting' parameter or the meaning of its enum values. The enums in the schema are self-explanatory only to a degree, but the description adds little beyond what the property names already convey.

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 uses a specific verb ('Set') with a concrete resource ('per-site Chrome content setting') and mechanism ('extension API'). It clearly communicates the tool's core action, though it does not explicitly contrast with the sibling content_setting_get or other alternatives.

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 guidance is given about when to use this tool versus alternatives like content_setting_get. The description implies a write operation but does not mention when to prefer it, what prerequisites exist, or how it differs from related tools.

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