@xctrace-analyzer/mcp-server 0.1.2 → 0.1.3

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 (2) hide show
  1. package/README.md +21 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -47,6 +47,18 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
47
47
  }
48
48
  ```
49
49
 
50
+ ### Codex CLI
51
+
52
+ ```bash
53
+ codex mcp add xctrace-analyzer -- npx -y @xctrace-analyzer/mcp-server
54
+ ```
55
+
56
+ Check that Codex registered the server:
57
+
58
+ ```bash
59
+ codex mcp list
60
+ ```
61
+
50
62
  ### Building from Source
51
63
 
52
64
  ```bash
@@ -123,6 +135,15 @@ Claude Desktop-style MCP configs can pass the same settings through `env`:
123
135
  }
124
136
  ```
125
137
 
138
+ Codex can pass the same settings with `--env`:
139
+
140
+ ```bash
141
+ codex mcp add xctrace-analyzer \
142
+ --env XCTRACE_ANALYZER_ALLOW_LAUNCH=1 \
143
+ --env XCTRACE_ANALYZER_TRACE_ROOT="/Users/you/Library/Application Support/xctrace-analyzer/traces" \
144
+ -- npx -y @xctrace-analyzer/mcp-server
145
+ ```
146
+
126
147
  ### `profile_running_app`
127
148
 
128
149
  Record a running app once with a profiling preset and return one combined report. `durationSeconds: 60` means one 60-second recording. The preset uses a base template plus additional Instruments where Xcode supports it.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xctrace-analyzer/mcp-server",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "MCP server for Xcode Instruments trace analysis",
5
5
  "mcpName": "io.github.jamesrochabrun/xctrace-analyzer",
6
6
  "type": "module",