@extension.dev/mcp 5.5.0 → 5.5.2
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.
- package/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +2 -2
- package/CHANGELOG.md +52 -2
- package/README.md +3 -3
- package/dist/module.js +735 -228
- package/dist/src/lib/bridge-tabs.d.ts +14 -0
- package/dist/src/lib/login-flow.d.ts +8 -0
- package/dist/src/tools/store-status.d.ts +56 -0
- package/package.json +3 -3
- package/server.json +3 -3
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "extensiondev-mcp",
|
|
3
3
|
"owner": {
|
|
4
4
|
"name": "Cezar Augusto",
|
|
5
|
-
"email": "
|
|
5
|
+
"email": "hello@extension.dev",
|
|
6
6
|
"url": "https://extension.dev"
|
|
7
7
|
},
|
|
8
8
|
"plugins": [
|
|
@@ -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": "5.5.
|
|
13
|
+
"version": "5.5.2",
|
|
14
14
|
"category": "development",
|
|
15
15
|
"author": {
|
|
16
16
|
"name": "Cezar Augusto"
|
|
@@ -1,10 +1,10 @@
|
|
|
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": "5.5.
|
|
4
|
+
"version": "5.5.2",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Cezar Augusto",
|
|
7
|
-
"email": "
|
|
7
|
+
"email": "hello@extension.dev",
|
|
8
8
|
"url": "https://cezaraugusto.com"
|
|
9
9
|
},
|
|
10
10
|
"homepage": "https://github.com/extensiondev/mcp",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,55 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 5.5.2
|
|
4
|
+
|
|
5
|
+
Honest browser support wording ahead of the Safari lane landing.
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- The package description and README now say Safari is coming next
|
|
10
|
+
instead of listing it alongside the browsers that are store-ready
|
|
11
|
+
today. Chrome, Edge, Firefox, and every Chromium- or Gecko-based
|
|
12
|
+
browser remain fully supported; nothing changes functionally.
|
|
13
|
+
|
|
14
|
+
## 5.5.1
|
|
15
|
+
|
|
16
|
+
The store journey stops being write-only after submit, and the token
|
|
17
|
+
surfaces start telling the truth about lifetimes and API bases.
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
|
|
21
|
+
- `extension_store_status` (tool 33): the post-submit sibling of
|
|
22
|
+
`extension_deploy`. Reads the project's public registry
|
|
23
|
+
(`stores/health.json`, `stores/status.json`, `stores/submissions.json`)
|
|
24
|
+
and reports per store whether it is configured, its latest credential
|
|
25
|
+
health check, the last recorded submission (version, status, store
|
|
26
|
+
URL, submitted-at), and the latest review status. Normalizes both the
|
|
27
|
+
v3 merged status schema and legacy v2 poller documents. Defaults to
|
|
28
|
+
the logged-in project; accepts `workspace` + `project` overrides like
|
|
29
|
+
`extension_release_list`. A configured store with a failing credential
|
|
30
|
+
reports `configured: true` with `health.ok: false` (rotate the
|
|
31
|
+
credential, deep-linked), never "not configured".
|
|
32
|
+
|
|
33
|
+
### Fixed
|
|
34
|
+
|
|
35
|
+
- `extension_whoami` no longer asserts a bare `api` field that could
|
|
36
|
+
misstate the platform base (a login minted via a localhost dev server
|
|
37
|
+
kept reporting that dead base for a token that authenticates against
|
|
38
|
+
production). The recorded login base is now labeled
|
|
39
|
+
`apiRecordedAtLogin`, `apiDefault` reports what authenticated tools
|
|
40
|
+
actually target, the message flags any divergence, and a set
|
|
41
|
+
`EXTENSION_DEV_TOKEN` is disclosed as outranking the stored login.
|
|
42
|
+
- The 7-day token TTL (server-enforced) is now stated everywhere a CI
|
|
43
|
+
author looks: `extension_login`'s description and success/pending
|
|
44
|
+
results, `extension_whoami`'s `tokenTtlNote` (with the deep console
|
|
45
|
+
Access tokens URL), and the auth prose of `extension_deploy` and
|
|
46
|
+
`extension_release_promote` (`extension_publish`'s auth envelope is
|
|
47
|
+
byte-frozen and unchanged).
|
|
48
|
+
- `extension_deploy`'s description says the per-store rows in the result
|
|
49
|
+
are the verdict to trust: the platform's bare preflight line does not
|
|
50
|
+
check store health. A real (non-dry-run) submission now points at
|
|
51
|
+
`extension_store_status` for tracking.
|
|
52
|
+
|
|
3
53
|
## 5.5.0
|
|
4
54
|
|
|
5
55
|
The debug surfaces learn to point at things: tabs are targetable by
|
|
@@ -644,7 +694,7 @@ this release graduates that line to stable and becomes `latest`.
|
|
|
644
694
|
|
|
645
695
|
# @extension.dev/mcp, Changelog
|
|
646
696
|
|
|
647
|
-
##
|
|
697
|
+
## 5.5.1, agent-bridge tools
|
|
648
698
|
|
|
649
699
|
Adds the MCP client surface for the Extension.js **agent bridge** (dev-time
|
|
650
700
|
observe + act + inspect). All new tools shell out to the `extension` CLI verbs
|
|
@@ -679,7 +729,7 @@ Internal: `lib/act` (CLI shell-out helper), `lib/exec.runExtensionCli` (capture)
|
|
|
679
729
|
`lib/cdp.getClosedShadowRoots`. Test infra aligned to the workspace vitest
|
|
680
730
|
catalog.
|
|
681
731
|
|
|
682
|
-
##
|
|
732
|
+
## 5.5.1, login (auth tools)
|
|
683
733
|
|
|
684
734
|
Adds the missing `login` flow so `extension_publish` no longer requires the user
|
|
685
735
|
to mint and export `EXTENSION_DEV_TOKEN` by hand. Auth stays auth-AWARE: the
|
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
# @extension.dev/mcp [![Version][npm-version-image]][npm-version-url] [![Downloads][npm-downloads-image]][npm-downloads-url] [![Discord][discord-image]][discord-url]
|
|
9
9
|
|
|
10
|
-
> Give your AI agent hands for browser extension development.
|
|
10
|
+
> Give your AI agent hands for browser extension development. 33 MCP tools that scaffold, run, inspect, debug, and publish cross-browser extensions.
|
|
11
11
|
|
|
12
12
|
<img alt="Logo" align="right" src="https://media.extension.land/brand/extension-dev/logo-dock.png" width="20.7%" />
|
|
13
13
|
|
|
@@ -26,7 +26,7 @@ Extensions fail silently: content scripts that never inject, panels that never o
|
|
|
26
26
|
These tools give agents eyes on the live browser, so they debug from evidence instead of guessing:
|
|
27
27
|
|
|
28
28
|
- **Scaffold** from the 60+ template catalog behind [templates.extension.dev](https://templates.extension.dev), or add a popup, sidebar, or content script to an existing project
|
|
29
|
-
- **Run** the dev server with HMR in Chrome, Edge, Firefox,
|
|
29
|
+
- **Run** the dev server with HMR in Chrome, Edge, Firefox, Brave, Opera, Vivaldi, Yandex, Waterfox, LibreWolf, or any Chromium- or Gecko-based binary (Safari coming next), no build config
|
|
30
30
|
- **See** the live DOM, unified logs from every extension context, `chrome.storage` contents, and the loaded-extension list
|
|
31
31
|
- **Act**: evaluate code in any context, trigger the action button and commands, reload the extension, replay events
|
|
32
32
|
- **Ship**: validate the manifest cross-browser, build for production, publish a shareable preview, and promote builds to release channels headlessly
|
|
@@ -127,7 +127,7 @@ Browser-launching tools (`dev`, `start`, `preview`) shell out to the `extension`
|
|
|
127
127
|
|
|
128
128
|
## From preview to store
|
|
129
129
|
|
|
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
|
+
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. After a real submission, `extension_store_status` reads the recorded outcome, per-store credential health, and review state from the project's public registry, so agents and CI can answer "was it approved?" without a console visit. Access tokens live at most 7 days; CI pipelines re-mint them from the console's Access tokens page.
|
|
131
131
|
|
|
132
132
|
## The extension.dev stack
|
|
133
133
|
|