@extension.dev/mcp 5.6.0 → 5.6.1
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 +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +10 -0
- package/dist/module.js +4 -6
- package/package.json +1 -1
- package/server.json +2 -2
|
@@ -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.6.
|
|
13
|
+
"version": "5.6.1",
|
|
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": "5.6.
|
|
4
|
+
"version": "5.6.1",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Cezar Augusto",
|
|
7
7
|
"email": "hello@extension.dev",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 5.6.1
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- `extension_deploy` and `extension_store_status` no longer advertise
|
|
8
|
+
`safari` as a store. The Safari/App Store submission lane does not
|
|
9
|
+
exist yet (the platform now also rejects such submissions server-side
|
|
10
|
+
with `SAFARI_LANE_DISABLED`), so the tool schemas stop inviting agents
|
|
11
|
+
to try it. Safari as a build/run target is unchanged.
|
|
12
|
+
|
|
3
13
|
## 5.6.0
|
|
4
14
|
|
|
5
15
|
Firefox reaches full protocol parity: every formerly Chromium-only
|
package/dist/module.js
CHANGED
|
@@ -220,7 +220,7 @@ __webpack_require__.d(whoami_namespaceObject, {
|
|
|
220
220
|
handler: ()=>whoami_handler,
|
|
221
221
|
schema: ()=>whoami_schema
|
|
222
222
|
});
|
|
223
|
-
var package_namespaceObject = JSON.parse('{"rE":"5.6.
|
|
223
|
+
var package_namespaceObject = JSON.parse('{"rE":"5.6.1","El":{"OP":"^4.0.15"}}');
|
|
224
224
|
function scaffoldEnginePin(projectPath) {
|
|
225
225
|
try {
|
|
226
226
|
const pkg = JSON.parse(node_fs.readFileSync(node_path.join(projectPath, "package.json"), "utf8"));
|
|
@@ -6067,8 +6067,7 @@ const deploy_schema = {
|
|
|
6067
6067
|
enum: [
|
|
6068
6068
|
"chrome",
|
|
6069
6069
|
"firefox",
|
|
6070
|
-
"edge"
|
|
6071
|
-
"safari"
|
|
6070
|
+
"edge"
|
|
6072
6071
|
]
|
|
6073
6072
|
},
|
|
6074
6073
|
description: "Stores to submit to."
|
|
@@ -6237,12 +6236,11 @@ async function deploy_handler(args) {
|
|
|
6237
6236
|
const KNOWN_STORES = [
|
|
6238
6237
|
"chrome",
|
|
6239
6238
|
"firefox",
|
|
6240
|
-
"edge"
|
|
6241
|
-
"safari"
|
|
6239
|
+
"edge"
|
|
6242
6240
|
];
|
|
6243
6241
|
const store_status_schema = {
|
|
6244
6242
|
name: "extension_store_status",
|
|
6245
|
-
description: "Report the project's browser-store state after an extension_deploy submission: per store (chrome, firefox, edge
|
|
6243
|
+
description: "Report the project's browser-store state after an extension_deploy submission: per store (chrome, firefox, edge) whether it is configured, its latest credential health check, the last recorded submission (version, status, store URL, submitted-at), and the latest review status. Reads the project's public registry (registry.extension.land: stores/health.json, stores/status.json, stores/submissions.json) - read-only, dispatches nothing, no auth needed for public projects. Defaults to the logged-in project (extension_login); pass workspace + project to inspect another public project. Registry state can lag the store dashboards by up to a polling interval.",
|
|
6246
6244
|
inputSchema: {
|
|
6247
6245
|
type: "object",
|
|
6248
6246
|
properties: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@extension.dev/mcp",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "5.6.
|
|
4
|
+
"version": "5.6.1",
|
|
5
5
|
"description": "MCP server that lets AI agents (Claude Code, Claude Desktop, Cursor, Copilot, Codex) build, run, inspect, and publish browser extensions. 33 tools for scaffolding, live DOM inspection, log streaming, and store-ready builds across Chrome, Edge, Firefox, and every Chromium- or Gecko-based browser (Brave, Opera, Vivaldi, Yandex, Waterfox, LibreWolf), with Safari coming next. Powered by extension.dev and Extension.js.",
|
|
6
6
|
"mcpName": "io.github.extensiondev/mcp",
|
|
7
7
|
"license": "MIT",
|
package/server.json
CHANGED
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
9
|
"websiteUrl": "https://extension.dev",
|
|
10
|
-
"version": "5.6.
|
|
10
|
+
"version": "5.6.1",
|
|
11
11
|
"packages": [
|
|
12
12
|
{
|
|
13
13
|
"registryType": "npm",
|
|
14
14
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
15
15
|
"identifier": "@extension.dev/mcp",
|
|
16
|
-
"version": "5.6.
|
|
16
|
+
"version": "5.6.1",
|
|
17
17
|
"runtimeHint": "npx",
|
|
18
18
|
"transport": {
|
|
19
19
|
"type": "stdio"
|