Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,15 @@ jobs:
- name: Create archive
run: tar -czf firefox-devtools-mcp-${{ github.ref_name }}.tar.gz dist package.json README.md LICENSE

- name: Build MCPB bundle
run: npm run build:mcpb

- name: Create release
uses: softprops/action-gh-release@v2
with:
files: firefox-devtools-mcp-${{ github.ref_name }}.tar.gz
files: |
firefox-devtools-mcp-${{ github.ref_name }}.tar.gz
dist-mcpb/*.mcpb
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ out
# Nuxt.js build / generate output
.nuxt
dist
dist-mcpb

# Gatsby files
.cache/
Expand Down
36 changes: 36 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"manifest_version": "0.3",
"name": "firefox-devtools-mcp",
"display_name": "Firefox DevTools MCP",
"version": "0.9.9",
"description": "Control Firefox for browsing, web testing, and debugging. Fill forms, capture network and console activity, take screenshots, run scripts, and profile performance. Supports Android devices.",
"author": {
"name": "Mozilla",
"url": "https://github.com/mozilla/firefox-devtools-mcp"
},
"repository": {
"type": "git",
"url": "https://github.com/mozilla/firefox-devtools-mcp.git"
},
"homepage": "https://github.com/mozilla/firefox-devtools-mcp",
"license": "MIT OR Apache-2.0",
"server": {
"type": "node",
"entry_point": "dist/index.js",
"mcp_config": {
"command": "node",
"args": [
"${__dirname}/dist/index.js",
"--auto-profile",
"--enable-script",
"--pref",
"remote.prefs.recommended=false"
]
}
},
"compatibility": {
"runtimes": {
"node": ">=20.19.0"
}
}
}
Loading