@csmodding/gameface-devtools-mcp 0.1.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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +190 -0
  3. package/dist/server.mjs +31721 -0
  4. package/package.json +51 -0
package/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "@csmodding/gameface-devtools-mcp",
3
+ "version": "0.1.0",
4
+ "description": "MCP server that drives a running Coherent Gameface (Cohtml) game UI over a direct Chrome DevTools Protocol connection: evaluate JS, screenshot, inspect and drive the DOM, capture the console, and set JS breakpoints.",
5
+ "keywords": [
6
+ "browser-automation",
7
+ "cdp",
8
+ "chrome-devtools-protocol",
9
+ "coherent-gameface",
10
+ "cohtml",
11
+ "debugger",
12
+ "game-ui",
13
+ "gameface",
14
+ "mcp",
15
+ "mcp-server"
16
+ ],
17
+ "homepage": "https://github.com/CitiesSkylinesModding/coherent-gameface-agent-plugin",
18
+ "license": "MIT",
19
+ "author": {
20
+ "name": "Morgan Touverey Quilling"
21
+ },
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/CitiesSkylinesModding/coherent-gameface-agent-plugin.git",
25
+ "directory": "mcp"
26
+ },
27
+ "bin": {
28
+ "gameface-devtools-mcp": "dist/server.mjs"
29
+ },
30
+ "files": [
31
+ "dist"
32
+ ],
33
+ "type": "module",
34
+ "publishConfig": {
35
+ "access": "public"
36
+ },
37
+ "scripts": {
38
+ "// We use mise-en-place to manage tasks. See mise.toml for more info.": ""
39
+ },
40
+ "devDependencies": {
41
+ "@modelcontextprotocol/sdk": "^1.29.0",
42
+ "@types/common-tags": "^1.8.4",
43
+ "@types/node": "^24.13.3",
44
+ "common-tags": "^1.8.2",
45
+ "typescript": "^7.0.2",
46
+ "zod": "^4.4.3"
47
+ },
48
+ "engines": {
49
+ "node": ">=22.4"
50
+ }
51
+ }