Skip to main content
Glama

crx-permission-risk

Server Details

Score the privilege a Chrome MV3 extension takes from its manifest, and diff permission sets.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.3/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: analyzing a full manifest, comparing two versions, and explaining a single permission. There is no overlap, so an agent can easily select the right tool.

Naming Consistency5/5

All tool names follow the exact verb_noun pattern: analyze_manifest, compare_permission_sets, explain_permission. The naming is uniform and predictable.

Tool Count5/5

With 3 tools, the server is well-scoped for its purpose. Each tool provides a distinct and necessary function, and the count sits comfortably within the ideal range.

Completeness5/5

The set covers the core workflows of permission-risk analysis: full manifest evaluation, version comparison, and individual permission explanation. There are no obvious dead ends or missing operations for the stated domain.

Available Tools

3 tools
analyze_manifestAnalyze a Chrome extension manifestAInspect

Static privilege analysis of a Chrome MV3 manifest.json. Returns a 0-100 risk score, the permissions and host patterns that drive it, dangerous permission combinations, and MV3 policy problems (remote code, unsafe-eval, web_accessible_resources). Content-script matches are counted as host access even when host_permissions is empty.

ParametersJSON Schema
NameRequiredDescriptionDefault
manifestYesThe manifest.json content, as a JSON object or a JSON string.
Behavior4/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 explains the tool is static (read-only), lists the key outputs, and adds a nuanced behavioral detail: content-script matches count as host access even when host_permissions is empty. This goes beyond a simple purpose statement, though it does not cover edge cases like invalid manifest handling.

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 two sentences long, front-loaded with the core purpose, and provides essential details without fluff. The second sentence adds an important nuance, making every word earn its place. No unnecessary or repetitive content.

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?

Without an output schema, the description enumerates the primary outputs (risk score, permissions, host patterns, combinations, policy problems), which is sufficient to set expectations. It also notes a special counting behavior for content scripts. It does not discuss error handling or the exact response structure, but for a static analysis tool with a single parameter, it covers the essential context well.

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

Parameters4/5

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

The schema provides 100% coverage with a clear description of the 'manifest' parameter as JSON object or string. The tool description adds further semantic meaning by specifying the expected input is a Chrome MV3 manifest, which imposes domain constraints on the parameter value. This raises the value above the schema-alone baseline.

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 clearly states the tool performs static privilege analysis of a Chrome MV3 manifest.json and enumerates its outputs (risk score, permissions, host patterns, dangerous combinations, MV3 policy problems). This is specific enough to distinguish it from siblings like compare_permission_sets and explain_permission, which serve different purposes.

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

Usage Guidelines4/5

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

The description clearly implies when to use this tool—when analyzing a Chrome MV3 manifest for privilege-related risks. It provides strong contextual cues and does not exclude any specific scenarios, but it does not explicitly mention alternatives or state 'use this instead of X'. Thus it has clear context without explicit exclusions.

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

compare_permission_setsDiff two permission setsAInspect

Compares the permissions and host patterns of two versions of an extension. Reports the score delta, what was added or removed, and whether the change widens the install-time warning set, which makes Chrome disable the extension for existing users until they re-accept.

ParametersJSON Schema
NameRequiredDescriptionDefault
afterYesAPI permissions in the new version.
beforeYesAPI permissions in the current published version.
after_hostsNohost_permissions in the new version.
before_hostsNohost_permissions in the current published version.
Behavior4/5

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

With no annotations, the description carries the burden of disclosure. It reveals key behavioral traits: it reports added/removed permissions and whether the change widens the install-time warning set, which can cause Chrome to disable the extension for existing users. This is a non-obvious consequence that goes beyond the basic 'compares' verb, though it stops short of detailing whether the tool itself has side effects or requires specific access.

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 two sentences, front-loaded with the main action and followed by precise output details. No redundant or filler text; every sentence earns its place.

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

Completeness5/5

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

Given the tool's moderate complexity and no output schema, the description adequately summarizes the return values (score delta, additions/removals, warning-set change). It also covers the practical consequence of the comparison, making it self-sufficient for an agent to understand what the tool does and what it returns.

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?

The input schema has 100% parameter description coverage, so the schema already explains each parameter (before, after, before_hosts, after_hosts). The description adds no new parameter-level meaning beyond what the schema provides, so the baseline score of 3 is appropriate.

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 clearly states the tool compares permissions and host patterns of two versions of an extension, which is a specific verb+resource combination. It also distinguishes from siblings (analyze_manifest, explain_permission) by focusing on comparison between versions and reporting deltas.

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

Usage Guidelines4/5

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

The description implies usage for comparing two versions of an extension, and the outputs (score delta, added/removed) make the context clear. It does not explicitly mention alternative tools or when not to use, but the purpose is self-evident and differentiates from siblings.

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

explain_permissionExplain one permissionAInspect

Returns the privilege weight (0-10) for a single Chrome extension permission or host pattern, what it actually grants, whether it triggers an install-time warning, and the narrower alternative if one exists.

ParametersJSON Schema
NameRequiredDescriptionDefault
permissionYesA permission name such as cookies, or a host pattern such as <all_urls>.
Behavior4/5

Does 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 transparently explains what the tool returns, including weight, grants, warning status, and alternatives. It does not mention edge cases like invalid permission names or host patterns, but for a read-only lookup tool this is a strong, non-misleading description.

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 that starts with the core verb and lists all key output aspects in a structured, readable way. Every element earns its place, with no fluff or repetition.

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

Completeness5/5

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

This is a simple, single-parameter tool with no output schema, and the description fully enumerates the kinds of information returned. It is sufficiently complete for an agent to select and invoke the tool correctly.

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?

The input schema already fully describes the single 'permission' parameter, including examples of both permission names and host patterns. The description reinforces the same idea ('permission or host pattern') but adds no parameter-specific detail beyond what the schema already covers, so a baseline of 3 is appropriate.

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 ('Returns') and clearly identifies the resource ('a single Chrome extension permission or host pattern'). It enumerates the exact information provided (privilege weight, what it grants, install-time warning, narrower alternative), which fully distinguishes it from sibling tools like analyze_manifest and compare_permission_sets.

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

Usage Guidelines4/5

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

The description clearly implies this tool is for explaining one permission and lists what it returns, giving the user context for when to invoke it. However, it does not explicitly mention when not to use it or refer to alternative tools such as analyze_manifest or compare_permission_sets.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • F
    license
    A
    quality
    C
    maintenance
    Analyzes Salesforce permission architecture (profiles, permission sets, groups) to support RBAC remediation. It snapshots the permission model into DuckDB and provides tools for diffs, sensitive access detection, and verified decomposition proposals.
    Last updated
    9

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources