cws-mcp
Enables management of Chrome Web Store extensions, allowing users to upload ZIP files, publish versions with optional staged rollouts, check review status, and update store listing metadata.
cws-mcp
MCP server for Chrome Web Store extension management. Upload, publish, and manage Chrome extensions directly from Claude Code or any MCP client.
When to Use
Use this MCP when you need to:
"Upload a new version of my Chrome extension" — build your ZIP and use the
uploadtool to push it as a draft"Publish my extension to the Chrome Web Store" — use
publishto submit for review and go live"Check the review status of my extension" — use
statusto see review state, version, and deploy percentage"Update my extension's metadata (description, screenshots)" — use
update-metadata-uito change store listing details"Cancel a pending submission" — use
cancelto withdraw a submission under review"Set up staged rollout for my extension" — use
publishwith staged rollout, thendeploy-percentageto ramp up
Related MCP server: browser-mcp
Tools
Tool | Description |
| Upload a ZIP file to Chrome Web Store (update existing item draft) |
| Publish an extension with optional staged rollout, publish type, and skip-review |
| Fetch the current status including review state, deploy percentage, and version |
| Cancel a pending submission |
| Set staged rollout percentage (0-100, must exceed current target) |
| Read draft/published listing metadata (v1.1 API, deprecated Oct 2026) |
| Update listing metadata via v1.1 API (deprecated Oct 2026) |
| Update listing metadata via dashboard UI automation (Playwright) |
API Coverage
This MCP server covers all Chrome Web Store API v2 endpoints:
v2 Endpoint | MCP Tool |
|
|
|
|
|
|
|
|
|
|
Additionally, v1.1 API endpoints are available for metadata operations (get, update-metadata), with dashboard UI automation (update-metadata-ui) as the recommended alternative since v1 is deprecated.
Setup
1. Create OAuth2 Credentials
Go to Google Cloud Console
Create a project (or select existing)
Enable Chrome Web Store API
Create OAuth2 credentials (Desktop app type)
Note your Client ID and Client Secret
2. Get Refresh Token
# Open in browser to get authorization code
open "https://accounts.google.com/o/oauth2/auth?response_type=code&scope=https://www.googleapis.com/auth/chromewebstore&client_id=YOUR_CLIENT_ID&redirect_uri=urn:ietf:wg:oauth:2.0:oob"
# Exchange code for refresh token
curl -X POST https://oauth2.googleapis.com/token \
-d "client_id=YOUR_CLIENT_ID" \
-d "client_secret=YOUR_CLIENT_SECRET" \
-d "code=YOUR_AUTH_CODE" \
-d "grant_type=authorization_code" \
-d "redirect_uri=urn:ietf:wg:oauth:2.0:oob"3. Configure MCP
Add to your Claude Code MCP settings (~/.claude/settings.local.json):
{
"mcpServers": {
"cws-mcp": {
"command": "node",
"args": ["/path/to/cws-mcp/dist/index.js"],
"env": {
"CWS_CLIENT_ID": "xxxxx.apps.googleusercontent.com",
"CWS_CLIENT_SECRET": "GOCSPX-xxxxx",
"CWS_REFRESH_TOKEN": "1//xxxxx",
"CWS_PUBLISHER_ID": "me",
"CWS_ITEM_ID": "your-extension-id"
}
}
}
}Or install globally via npm:
{
"mcpServers": {
"cws-mcp": {
"command": "npx",
"args": ["-y", "cws-mcp"],
"env": { ... }
}
}
}Environment Variables
Variable | Required | Description |
| Yes | Google OAuth2 Client ID |
| Yes | Google OAuth2 Client Secret |
| Yes | OAuth2 Refresh Token |
| No | Publisher ID (default: |
| No | Default extension item ID |
| No | Browser profile path for UI automation (default: |
Usage Examples
Check extension status
Use the cws-mcp status toolUpload and publish
1. Use cws-mcp upload with zipPath="/path/to/extension.zip"
2. Use cws-mcp publishPublish with staged rollout
Use cws-mcp publish with:
- publishType="STAGED_PUBLISH"
- deployPercentage=10Publish with skip-review
Use cws-mcp publish with skipReview=trueUpdate listing title/description without publishing
Use cws-mcp update-metadata with:
- title="Pexus"
- summary="Official wallet for Plumise"
- description="..."
- category="productivity"
- defaultLocale="en"Update advanced metadata fields
Use cws-mcp update-metadata with metadata={
"homepageUrl": "https://plumise.com",
"supportUrl": "https://plug.plumise.com/docs"
}When API metadata updates don't reflect
Use cws-mcp update-metadata-ui with:
- title
- summary
- description
- category
- homepageUrl
- supportUrlNotes:
This tool automates the Chrome Web Store dashboard UI.
First run with
headless=falseif login is required.Browser profile path defaults to
~/.cws-mcp-profile(override withCWS_DASHBOARD_PROFILE_DIR).
Staged rollout
1. Use cws-mcp publish
2. Use cws-mcp deploy-percentage with percentage=10
3. Use cws-mcp deploy-percentage with percentage=50
4. Use cws-mcp deploy-percentage with percentage=100Note: deploy-percentage is only available for extensions with 10,000+ seven-day active users. The new percentage must always be higher than the current target.
V1 API Deprecation
The get and update-metadata tools use the Chrome Web Store v1.1 API, which is deprecated and will be removed after October 15, 2026. The v2 API does not provide metadata read/write endpoints, so these tools remain available as a bridge. Use update-metadata-ui (Playwright dashboard automation) as the long-term alternative.
License
MIT
Available Tools
8 toolscancelA
Cancel a pending submission on Chrome Web Store. Can be used to cancel an item currently in review.
| Name | Required | Description | Default |
|---|---|---|---|
| itemId | No | Extension item ID (defaults to CWS_ITEM_ID env var) | |
| publisherId | No | Publisher ID (defaults to CWS_PUBLISHER_ID env var or 'me') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It explains the action (cancel a pending submission) but does not disclose side effects, permissions needed, or post-cancellation state. This is adequate but lacks depth.
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?
Two sentences, no filler. Every word is necessary and front-loaded with the core verb and resource. Very efficient.
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?
For a simple tool with two optional parameters and no output schema, the description covers the core purpose but omits prerequisites (e.g., item must be pending), return value, or what happens after cancellation. Adequate but not thorough.
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?
Schema coverage is 100% with descriptions for both parameters. The tool description adds no extra meaning beyond the schema, so baseline 3 applies.
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 clearly states the verb 'Cancel' and the resource 'pending submission on Chrome Web Store'. It specifies the tool targets items in review, distinguishing it from sibling tools like publish, upload, or get.
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?
The description provides context for when to use the tool ('to cancel an item currently in review'), but does not explicitly state when not to use it or mention alternatives. However, the context is clear enough against sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
deploy-percentageA
Set the published deploy percentage for staged rollout on Chrome Web Store. The new percentage must be higher than the current target. Only available for items with 10,000+ seven-day active users.
| Name | Required | Description | Default |
|---|---|---|---|
| percentage | Yes | Deploy percentage (0-100). Must be larger than the current target percentage. | |
| itemId | No | Extension item ID (defaults to CWS_ITEM_ID env var) | |
| publisherId | No | Publisher ID (defaults to CWS_PUBLISHER_ID env var or 'me') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses important constraints (incremental percentage, user count requirement) but omits behavioral details such as success/failure responses or whether the change triggers a publish. The description is moderately transparent but lacks depth.
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 concise: two sentences, no filler. It is front-loaded with the core action and follows with necessary constraints. Every sentence adds value.
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?
The tool has 3 parameters with full schema coverage, no output schema, and no annotations. The description covers the core action and constraints but lacks information about return values, error conditions, or post-effect behavior. For a simple mutation tool, it is adequate but not complete.
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?
Schema description coverage is 100%, and the description repeats the constraint from the schema ('Must be larger than the current target percentage'). It adds the default behavior for itemId and publisherId, but overall does not significantly enhance understanding beyond the schema with 3 parameters.
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 clearly states the action: 'Set the published deploy percentage for staged rollout on Chrome Web Store.' It uses a specific verb ('Set') and identifies the resource ('deploy percentage'), differentiating it from siblings like 'cancel' or 'publish'.
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?
The description provides explicit conditions: the new percentage must be higher than the current target, and the tool is only available for items with 10,000+ seven-day active users. However, it does not explicitly mention when not to use this tool or suggest alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
getA
Get the current metadata of a Chrome Web Store item (v1.1 API). Returns title, description, category, and other listing fields. Note: v1 API is deprecated and will be removed after Oct 15, 2026.
| Name | Required | Description | Default |
|---|---|---|---|
| itemId | No | Extension item ID (defaults to CWS_ITEM_ID env var) | |
| projection | No | Metadata projection to fetch (defaults to DRAFT) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It correctly identifies the operation as read-only and mentions API version and deprecation. However, it does not disclose authentication requirements or potential errors, which are minor omissions for a simple getter.
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?
Two sentences efficiently convey purpose, returned fields, and deprecation. No extraneous information. Perfectly front-loaded and concise.
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?
Given the tool's simplicity, the description adequately covers returned fields and API version. Minor gaps exist regarding error handling and ownership requirements, but overall it is sufficiently complete.
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?
With 100% schema description coverage, the schema already documents both parameters (itemId, projection) including defaults. The description adds no new semantic information beyond the schema, meeting the baseline expectation.
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 clearly states it retrieves metadata of a Chrome Web Store item, specifying the API version and listing returned fields like title, description, and category. This distinguishes it from sibling tools like 'update-metadata' or 'publish'.
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?
The description implies usage for reading metadata, and the deprecation note warns about API removal. It does not explicitly state when to use vs alternatives, but the context is clear enough for a simple getter.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
publishA
Publish an extension to Chrome Web Store. Supports immediate publish, staged publish, initial deploy percentage, and skip-review.
| Name | Required | Description | Default |
|---|---|---|---|
| itemId | No | Extension item ID (defaults to CWS_ITEM_ID env var) | |
| publisherId | No | Publisher ID (defaults to CWS_PUBLISHER_ID env var or 'me') | |
| publishType | No | DEFAULT_PUBLISH: publishes immediately after approval. STAGED_PUBLISH: stages for manual publishing after approval. Defaults to DEFAULT_PUBLISH. | |
| deployPercentage | No | Initial deploy percentage for staged rollout (0-100). Only used with STAGED_PUBLISH or DEFAULT_PUBLISH. | |
| skipReview | No | Attempt to skip review if the extension qualifies. Defaults to false. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of disclosing behavioral traits. It mentions support for immediate/staged publish, deploy percentage, and skip-review, which adds some transparency. However, it does not disclose potential irreversible effects (e.g., overriding a live version) or error scenarios.
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 a single succinct sentence that efficiently communicates the tool's purpose and key features. It is front-loaded and avoids unnecessary words.
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?
Given the absence of an output schema and annotations, the description could provide more context about prerequisites (e.g., item must be uploaded first), return values, or typical error conditions. It covers core features but lacks completeness for a complex publish workflow.
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 has 100% coverage with detailed parameter descriptions. The description only summarizes the capabilities (immediate, staged, etc.) without adding new semantic depth beyond what the schema already provides. Baseline score of 3 is appropriate.
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 clearly states the verb 'Publish' and the resource 'extension to Chrome Web Store', making the action specific. It distinguishes well from sibling tools like 'upload' and 'cancel', as publishing is a distinct final step.
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?
The description implies that publishing is performed after an upload, but does not explicitly state when to use this tool versus siblings (e.g., upload first). No alternatives or prerequisites are mentioned, leaving usage context somewhat vague.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
statusA
Fetch the current status of an extension on Chrome Web Store. Returns published/submitted revision status, deploy percentage, version, takedown/warning flags, and last upload state.
| Name | Required | Description | Default |
|---|---|---|---|
| itemId | No | Extension item ID (defaults to CWS_ITEM_ID env var) | |
| publisherId | No | Publisher ID (defaults to CWS_PUBLISHER_ID env var or 'me') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It correctly implies a read operation by using 'Fetch', but lacks details on safety, idempotency, authentication, or rate limits. The returned fields are listed, which is helpful but not comprehensive behaviorally.
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 concise: one sentence stating purpose and a list of return fields. It is front-loaded with the action. Minor improvement could be structuring the return fields more clearly, but overall efficient.
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?
Given no output schema, the description lists six key return fields, which is sufficient for an agent to anticipate the response. The tool has simple optional params; the description covers what the agent needs to know.
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?
Schema description coverage is 100% because both parameters have descriptions mentioning environment variable defaults. The tool description adds no additional parameter info, so it meets the baseline but doesn't enhance meaning beyond the schema.
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 uses the specific verb 'Fetch' and the resource 'extension on Chrome Web Store', clearly indicating the tool's purpose. It distinguishes itself from siblings like 'deploy-percentage' (specific deploy info) and 'get' (generic) by listing the comprehensive set of returned data.
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?
The description implies usage when an overall status is needed, but no explicit guidance on when to use alternatives like 'deploy-percentage' or 'get'. No 'when not to use' or comparisons, leaving the agent to infer.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update-metadataA
Update the store listing metadata of a Chrome Web Store item (v1.1 API). Supports both common fields and raw metadata payload for advanced fields. Note: v1 API is deprecated and will be removed after Oct 15, 2026. Use update-metadata-ui as an alternative.
| Name | Required | Description | Default |
|---|---|---|---|
| itemId | No | Extension item ID (defaults to CWS_ITEM_ID env var) | |
| title | No | Store listing title | |
| summary | No | Store listing short summary | |
| description | No | Store listing description | |
| category | No | Category (e.g. 'productivity', 'developer_tools') | |
| defaultLocale | No | Default locale (e.g. 'ko', 'en') | |
| homepageUrl | No | Homepage URL | |
| supportUrl | No | Support URL | |
| metadata | No | Raw metadata object forwarded as-is to the v1 API. Useful for fields not exposed as first-class params. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full responsibility for behavioral disclosure. It only states 'Update' which implies mutation, but does not mention authentication requirements, idempotency, side effects, error handling, or rate limits. Given the lack of annotations, this is a significant gap for a tool that modifies data.
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 composed of two concise sentences. The first sentence clearly states the tool's purpose and scope. The second sentence provides critical deprecation notice and an alternative. No extraneous information is included; every sentence serves a clear purpose.
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?
Given the lack of annotations and no output schema, the description covers purpose, alternatives, and param context, but lacks behavioral details (e.g., mutation implications, permissions) and does not explain return values or error conditions. For a tool with 9 parameters and complex raw metadata, it is moderately complete but leaves gaps.
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?
Schema coverage is 100% with descriptions for all 9 parameters. The description adds value by explaining that metadata is a 'raw metadata object forwarded as-is' and that itemId defaults to an environment variable. This provides context beyond the schema, but does not significantly enhance understanding of the individual parameters. Baseline 3 is appropriate.
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?
Clearly states the verb 'update' and the resource 'store listing metadata of a Chrome Web Store item' using the v1.1 API. Mentions support for common fields and raw metadata, distinguishing it from the alternative tool update-metadata-ui which is a newer version. However, it does not fully differentiate the two tools' use cases beyond the deprecation notice.
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?
Explicitly notes that the v1 API is deprecated and will be removed by Oct 15, 2026, and directs users to use update-metadata-ui as an alternative. This provides clear when-not-to-use guidance. However, it does not specify when to use this tool versus the UI alternative (e.g., for programmatic access or raw metadata payloads) beyond the deprecation context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update-metadata-uiA
Update listing metadata via Chrome Web Store dashboard UI automation (Playwright). Use this when API metadata updates are not reflected, or as the primary metadata update method since the v1 API is deprecated.
| Name | Required | Description | Default |
|---|---|---|---|
| itemId | No | Extension item ID (defaults to CWS_ITEM_ID env var) | |
| title | No | Store listing title | |
| summary | No | Store listing short summary | |
| description | No | Store listing long description | |
| category | No | Category label as shown in dashboard UI | |
| homepageUrl | No | Homepage URL | |
| supportUrl | No | Support URL | |
| storeIconPath | No | Absolute path to 128x128 store icon image | |
| accountIndex | No | Google account index in dashboard URL (default: 0) | |
| headless | No | Run browser headless (default: false) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It mentions 'UI automation (Playwright)', hinting at browser interaction, but does not disclose potential slowness, environment requirements, or that by default the browser is visible (headless defaults to false). Could be more transparent.
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?
Two sentences, front-loaded with purpose and usage guidance. Every sentence is meaningful and concise.
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?
Covers primary use and differentiates from sibling but does not mention prerequisites (e.g., login requirements, browser environment) or return values. Given 10 parameters and no output schema, the description is slightly brief but adequate for the core functionality.
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?
Schema description coverage is 100% (all 10 parameters have descriptions). The description adds no extra meaning beyond the schema; it does not explain how parameters are used together or any constraints not in the schema.
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?
Description clearly states 'Update listing metadata via Chrome Web Store dashboard UI automation (Playwright)'. It specifies the verb (update), resource (listing metadata), and method (UI automation), distinguishing it from the API-based sibling 'update-metadata'.
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?
Explicitly says to use this tool 'when API metadata updates are not reflected, or as the primary metadata update method since the v1 API is deprecated'. Provides clear context but lacks explicit alternatives or when not to use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
uploadA
Upload a ZIP file to update an existing Chrome Web Store item draft. Note: Creating new items via API is not supported in v2 — use the Developer Dashboard to create new items.
| Name | Required | Description | Default |
|---|---|---|---|
| zipPath | Yes | Absolute path to the ZIP file to upload | |
| itemId | No | Extension item ID (defaults to CWS_ITEM_ID env var) | |
| publisherId | No | Publisher ID (defaults to CWS_PUBLISHER_ID env var or 'me') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully bears the burden of behavioral disclosure. It only states 'update an existing draft' but omits details such as authentication requirements, rate limits, effect on previous draft, or return value.
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?
Two concise sentences: the action is front-loaded, and the note adds essential context without excess.
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?
The description covers purpose and a key limitation, but lacks details on expected behavior (e.g., output, size limits, overwrite semantics) given the absence of an output schema.
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?
Schema coverage is 100% (all parameters described). The description adds no additional meaning beyond the schema, meeting the baseline of 3.
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 clearly states 'Upload a ZIP file to update an existing Chrome Web Store item draft', using a specific verb and resource. It distinguishes from siblings like 'get' or 'publish' by specifying the action is for draft updates.
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?
The description includes a note explicitly stating that creating new items is not supported via API and directs to the Developer Dashboard, providing a clear when-not-to-use. However, it does not contrast with sibling tools like 'update-metadata'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Most tools have distinct purposes, but update-metadata and update-metadata-ui both update metadata via different methods, which could cause confusion. The descriptions help differentiate, but an agent might still misselect.
Tool names consistently use lowercase with hyphens, but there is a mix of verbs (cancel, publish, upload) and nouns (status, deploy-percentage). The hyphenation pattern is consistent.
8 tools cover the core operations for Chrome Web Store item management without being overwhelming. The count is well-scoped for the server's purpose.
The set covers publishing workflow well, but misses important operations: creating new items (must use dashboard), listing items, and deleting. These gaps could hinder agents needing full lifecycle management.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP server for Mint — AI-powered QA that runs your app in a real browser on every PR.
Hosted MCP for YouTube Studio: uploads, metadata, playlists, comments, analytics, captions.
Hosted real Google Chrome MCP with per-user persistent state. Navigate, click, type, screenshot.
Browser MCP for logged-in tasks. Uses your Chrome — credentials stay local. Zero-token replay.
Related MCP Servers
- AlicenseBqualityDmaintenanceA universal browser automation MCP server using Playwright, enabling programmatic control of Chrome with 63 tools for navigation, interaction, media control, and CDP-based diagnostics.63242MIT
- AlicenseNot gradedqualityBmaintenanceUnified MCP server for browser automation (Playwright + CDP + CLI) and bookmark management across Chrome, Firefox, Edge, and Brave, including cross-browser sync, deduplication, and a React dashboard.1MIT
- AlicenseAqualityDmaintenanceMCP server for Chrome extension testing. Access chrome.storage, Service Workers, declarativeNetRequest, and more directly from AI coding agents like Claude Code.23111MIT
- FlicenseAqualityBmaintenanceEnterprise web automation testing MCP server that controls local Chrome via Playwright CDP, providing tools for page element analysis, interaction, dynamic layer exploration, VTable scene graph, test recording, and Shadcn-style Excel export.24
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mikusnuz/cws-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server