@extension.dev/mcp 4.5.0 → 4.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,7 +10,7 @@
10
10
  "name": "extension-mcp",
11
11
  "source": "./",
12
12
  "description": "MCP tools for browser extension development: scaffold from 60+ templates, run the dev server with HMR, inspect the live DOM and logs, and publish store-ready builds for Chrome, Edge, and Firefox.",
13
- "version": "4.5.0",
13
+ "version": "4.7.0",
14
14
  "category": "development",
15
15
  "author": {
16
16
  "name": "Cezar Augusto"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "extension-mcp",
3
3
  "description": "MCP tools for browser extension development: scaffold from 60+ templates, run the dev server with HMR, inspect the live DOM and logs, and publish store-ready builds for Chrome, Edge, and Firefox. Ships /extension, /extension-add, /extension-debug, and /extension-publish commands.",
4
- "version": "4.5.0",
4
+ "version": "4.7.0",
5
5
  "author": {
6
6
  "name": "Cezar Augusto",
7
7
  "email": "boss@cezaraugusto.net",
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # Changelog
2
2
 
3
+ ## 4.7.0
4
+
5
+ `extension_deploy` now submits **through** extension.dev instead of driving a
6
+ local CLI. Pass `browsers` + `buildSha` and the submission is routed to the
7
+ platform, which holds your store credentials and dispatches the release from
8
+ your project's mirror CI; authentication is your `extension_login` session or a
9
+ release token in `EXTENSION_DEV_TOKEN`, and it defaults to a dry run. The tool
10
+ is now a thin authenticated client of the platform's store-submission endpoint,
11
+ exactly like `extension_publish` and `extension_release_promote`, with no
12
+ external CLI dependency. This replaces the previous mode that shelled out to a
13
+ standalone local CLI. Direct zip-based submission with store credentials in the
14
+ environment is no longer exposed through the MCP; use your own CI pipeline for
15
+ that.
16
+
17
+ ## 4.6.0
18
+
19
+ New `extension_deploy` tool (31 tools total): submit a built extension to the
20
+ Chrome Web Store, Firefox AMO, and Edge Add-ons by driving a standalone
21
+ deploy CLI. Store targets are inferred from the `.zip` paths
22
+ you pass. It defaults to a dry run, and store credentials are read from the
23
+ environment or a `.env.submit` file, never from tool arguments, so secrets
24
+ never enter the agent transcript.
25
+
3
26
  ## 4.5.0
4
27
 
5
28
  The platform client (GitHub device-code login, the credential store, and the
package/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
 
10
10
  > Give your AI agent hands for browser extension development. 30 MCP tools that scaffold, run, inspect, debug, and publish cross-browser extensions.
11
11
 
12
- <img alt="Logo" align="right" src="https://media.extension.land/brand/extension-dev/logo-dock.png" width="15.5%" />
12
+ <img alt="Logo" align="right" src="https://media.extension.land/brand/extension-dev/logo-dock.png" width="20.7%" />
13
13
 
14
14
  ```bash
15
15
  claude mcp add extension-dev npx @extension.dev/mcp
@@ -121,19 +121,20 @@ cp node_modules/@extension.dev/mcp/claude/commands/*.md ~/my-extension/.claude/c
121
121
  | platform | `extension_logout` | Remove stored credentials |
122
122
  | platform | `extension_publish` | Publish a shareable preview to extension.dev |
123
123
  | platform | `extension_release_promote` | Promote a build to a release channel, headless |
124
+ | platform | `extension_deploy` | Submit to the Chrome, Firefox, and Edge stores through extension.dev |
124
125
 
125
126
  Browser-launching tools (`dev`, `start`, `preview`) shell out to the `extension` CLI — the project's own `node_modules/.bin/extension` when present, otherwise `npx extension@<pinned>` at the version this package is verified against; everything else runs in-process.
126
127
 
127
128
  ## From preview to store
128
129
 
129
- The four platform tools connect agents to [extension.dev](https://extension.dev): `extension_login` runs a GitHub device-code flow and stores a project-scoped token locally (never returned to the agent), `extension_publish` turns a build into a shareable preview URL, and `extension_release_promote` promotes a tested build to a release channel from CI or an agent session, no browser required. To automate store submission itself (Chrome Web Store, Edge Add-ons, Firefox AMO), pair with [`@extension.dev/deploy`](https://www.npmjs.com/package/@extension.dev/deploy).
130
+ The platform tools connect agents to [extension.dev](https://extension.dev): `extension_login` runs a GitHub device-code flow and stores a project-scoped token locally (never returned to the agent), `extension_publish` turns a build into a shareable preview URL, and `extension_release_promote` promotes a tested build to a release channel from CI or an agent session, no browser required. `extension_deploy` submits a built extension to the Chrome Web Store, Edge Add-ons, and Firefox AMO through extension.dev, which holds your store credentials and dispatches the release from your project's mirror CI — it defaults to a dry run and store credentials are never tool arguments.
130
131
 
131
132
  ## The extension.dev stack
132
133
 
133
134
  | Package | Use it to |
134
135
  | --- | --- |
135
136
  | [`@extension.dev/skill`](https://www.npmjs.com/package/@extension.dev/skill) | Teach AI agents the judgment half: cross-browser rules, gotchas, playbooks |
136
- | [`@extension.dev/deploy`](https://www.npmjs.com/package/@extension.dev/deploy) | Ship to Chrome, Firefox, and Edge stores from CI |
137
+ | [`@extension.dev/artifact-integrity`](https://www.npmjs.com/package/@extension.dev/artifact-integrity) | Verify extension artifacts and gate CI on tampered bytes before they ship |
137
138
 
138
139
  All of it rides on [Extension.js](https://github.com/extension-js/extension.js), the open-source cross-browser extension framework.
139
140