domsight-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.
package/package.json ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "domsight-mcp",
3
+ "version": "0.1.0",
4
+ "description": "Give your AI coding assistant eyes. MCP server that lets Claude Code, Cursor, and other AI tools see and control your browser — capture DOM, console errors, screenshots, fill forms, click buttons, and test user flows.",
5
+ "author": "Sylvester Amaechi (slycreator)",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/slycreator/domsight"
10
+ },
11
+ "keywords": [
12
+ "mcp",
13
+ "model-context-protocol",
14
+ "claude",
15
+ "claude-code",
16
+ "cursor",
17
+ "ai",
18
+ "browser",
19
+ "playwright",
20
+ "dom",
21
+ "screenshot",
22
+ "testing",
23
+ "automation",
24
+ "devtools",
25
+ "console-errors",
26
+ "debugging"
27
+ ],
28
+ "bin": {
29
+ "domsight-mcp": "./dist/mcp-server.js"
30
+ },
31
+ "files": [
32
+ "dist/mcp-server.js",
33
+ "README.md",
34
+ "LICENSE"
35
+ ],
36
+ "engines": {
37
+ "node": ">=18.0.0"
38
+ },
39
+ "dependencies": {
40
+ "@modelcontextprotocol/sdk": "^1.29.0",
41
+ "playwright-core": "^1.41.0"
42
+ }
43
+ }