firefox-css-theme-mcp 0.1.4 → 0.1.5
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/README.md +2 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,11 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Model Context Protocol (MCP) server for inspecting, querying, and live-debugging Firefox UI DOM and CSS themes (`userChrome.css`).
|
|
4
4
|
|
|
5
|
+

|
|
6
|
+
|
|
5
7
|
## Requirements
|
|
6
8
|
|
|
7
9
|
- Node.js >= 18
|
|
8
10
|
- Firefox Browser
|
|
9
|
-
- `geckodriver` available on your `PATH` or managed via Selenium
|
|
10
11
|
|
|
11
12
|
## Installation & Usage
|
|
12
13
|
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@ import { z } from "zod";
|
|
|
5
5
|
import { globalFirefoxManager } from "./firefox.js";
|
|
6
6
|
const serverInstance = new McpServer({
|
|
7
7
|
name: "firefox-css-theme-mcp",
|
|
8
|
-
version: "0.1.
|
|
8
|
+
version: "0.1.5",
|
|
9
9
|
});
|
|
10
10
|
serverInstance.registerTool("launch_browser", {
|
|
11
11
|
description: "Launch a Firefox instance with chrome debugging capabilities enabled.",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "firefox-css-theme-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Model Context Protocol server for inspecting and live-debugging Firefox UI DOM and CSS themes.",
|
|
5
5
|
"homepage": "https://github.com/easonwong-de/Firefox-CSS-Theme-MCP#readme",
|
|
6
6
|
"bugs": {
|