@probebrowser/trace-mcp 1.0.0 → 1.0.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/README.md +82 -0
- package/package.json +2 -1
package/README.md
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# Trace MCP
|
|
2
|
+
|
|
3
|
+
> Give your AI Agent eyes and hands to debug web applications
|
|
4
|
+
|
|
5
|
+
Trace MCP is the bridge between AI coding agents (Cursor, Claude Code, VS Code, Windsurf, etc.) and [Trace](https://trace.probebrowser.com/) - the debugging intelligence platform for web applications.
|
|
6
|
+
|
|
7
|
+
## 🚀 Quick Start
|
|
8
|
+
|
|
9
|
+
### Cursor
|
|
10
|
+
|
|
11
|
+
**Settings → Features → MCP Servers → Add Server**
|
|
12
|
+
|
|
13
|
+
```json
|
|
14
|
+
{
|
|
15
|
+
"trace": {
|
|
16
|
+
"command": "npx",
|
|
17
|
+
"args": ["@probebrowser/trace-mcp"]
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
### Claude Code
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
claude mcp add trace -- npx @probebrowser/trace-mcp
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### VS Code (Copilot)
|
|
29
|
+
|
|
30
|
+
```json
|
|
31
|
+
{
|
|
32
|
+
"mcp.servers": {
|
|
33
|
+
"trace": {
|
|
34
|
+
"command": "npx",
|
|
35
|
+
"args": ["@probebrowser/trace-mcp"]
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### Windsurf / Cline / Other MCP Clients
|
|
42
|
+
|
|
43
|
+
Add to your MCP config:
|
|
44
|
+
```json
|
|
45
|
+
{
|
|
46
|
+
"trace": {
|
|
47
|
+
"command": "npx",
|
|
48
|
+
"args": ["@probebrowser/trace-mcp"]
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## ✨ Capabilities
|
|
54
|
+
|
|
55
|
+
Once connected, your AI agent can:
|
|
56
|
+
|
|
57
|
+
| Category | Tools |
|
|
58
|
+
|----------|-------|
|
|
59
|
+
| **Console** | Read logs, errors, warnings |
|
|
60
|
+
| **Network** | Capture requests, responses, failures |
|
|
61
|
+
| **DOM** | Inspect elements, query selectors |
|
|
62
|
+
| **Performance** | Analyze metrics, timings |
|
|
63
|
+
| **Screenshots** | Capture page state |
|
|
64
|
+
| **Accessibility** | Run a11y audits |
|
|
65
|
+
| **Storage** | Read cookies, localStorage |
|
|
66
|
+
|
|
67
|
+
**96 debugging tools** available to your AI agent!
|
|
68
|
+
|
|
69
|
+
## 📖 Documentation
|
|
70
|
+
|
|
71
|
+
- [Trace Website](https://trace.probebrowser.com/)
|
|
72
|
+
- [MCP Setup Guide](https://trace.probebrowser.com/docs/mcp)
|
|
73
|
+
- [Tools Reference](https://trace.probebrowser.com/docs/tools)
|
|
74
|
+
|
|
75
|
+
## 🔗 Related Packages
|
|
76
|
+
|
|
77
|
+
- [`@probebrowser/trace`](https://www.npmjs.com/package/@probebrowser/trace) - CLI for manual debugging
|
|
78
|
+
- [`@probebrowser/sdk`](https://www.npmjs.com/package/@probebrowser/sdk) - SDK for programmatic use
|
|
79
|
+
|
|
80
|
+
## 📄 License
|
|
81
|
+
|
|
82
|
+
See [LICENSE](./LICENSE) for details.
|
package/package.json
CHANGED