@tempo-ai/mcp 0.0.105 → 0.0.106
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 +4 -3
- package/dist/bin.js +1 -1
- package/dist/{call-BE2JZROL.js → call-N3UTMHLY.js} +2 -2
- package/dist/{chunk-DBGXBZSQ.js → chunk-52IG2UKP.js} +4 -4
- package/dist/index.js +1 -1
- package/dist/{serve-E62XRLQQ.js → serve-7RSR6WI6.js} +1277 -196
- package/dist/serve-7RSR6WI6.js.map +1 -0
- package/package.json +1 -1
- package/dist/serve-E62XRLQQ.js.map +0 -1
- /package/dist/{call-BE2JZROL.js.map → call-N3UTMHLY.js.map} +0 -0
- /package/dist/{chunk-DBGXBZSQ.js.map → chunk-52IG2UKP.js.map} +0 -0
package/README.md
CHANGED
|
@@ -26,7 +26,7 @@ One server entry exposes Tempo's full tool surface: issues, cloud docs,
|
|
|
26
26
|
canvas comments, custom agents, run scripts, Slack (as the org's Tempo
|
|
27
27
|
bot), Linear, and — when run inside a Tempo repo — the canvas tools,
|
|
28
28
|
including headless `canvas_screenshot` and `canvas_share` with real
|
|
29
|
-
preview capture.
|
|
29
|
+
preview capture, plus `canvas_verify_vrt` for VRT stability checks.
|
|
30
30
|
|
|
31
31
|
### Install
|
|
32
32
|
|
|
@@ -63,9 +63,10 @@ npx @tempo-ai/mcp login
|
|
|
63
63
|
|
|
64
64
|
### Canvas visuals
|
|
65
65
|
|
|
66
|
-
`canvas_screenshot`
|
|
66
|
+
`canvas_screenshot`, `canvas_verify_vrt`, and `canvas_share`
|
|
67
67
|
capture with headless Chromium (the same pipeline Tempo's visual-review CI
|
|
68
|
-
uses).
|
|
68
|
+
uses). Stability runs share one devserver/browser while isolating each render.
|
|
69
|
+
They require Playwright's Chromium once per machine:
|
|
69
70
|
|
|
70
71
|
```bash
|
|
71
72
|
npx playwright install chromium
|
package/dist/bin.js
CHANGED
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import { Client } from "@modelcontextprotocol/sdk/client/index.js";
|
|
9
9
|
import { InMemoryTransport } from "@modelcontextprotocol/sdk/inMemory.js";
|
|
10
10
|
async function connectAggregate(options) {
|
|
11
|
-
const { createTempoAggregate } = await import("./serve-
|
|
11
|
+
const { createTempoAggregate } = await import("./serve-7RSR6WI6.js");
|
|
12
12
|
const handle = await createTempoAggregate(options);
|
|
13
13
|
const [clientTransport, serverTransport] = InMemoryTransport.createLinkedPair();
|
|
14
14
|
const client = new Client({ name: "tempo-mcp-cli", version: "0" });
|
|
@@ -127,4 +127,4 @@ export {
|
|
|
127
127
|
runCall,
|
|
128
128
|
runTools
|
|
129
129
|
};
|
|
130
|
-
//# sourceMappingURL=call-
|
|
130
|
+
//# sourceMappingURL=call-N3UTMHLY.js.map
|
|
@@ -157,7 +157,7 @@ async function run(argv) {
|
|
|
157
157
|
process.stderr.write(USAGE);
|
|
158
158
|
return 1;
|
|
159
159
|
}
|
|
160
|
-
const { runServe } = await import("./serve-
|
|
160
|
+
const { runServe } = await import("./serve-7RSR6WI6.js");
|
|
161
161
|
return await runServe(options);
|
|
162
162
|
}
|
|
163
163
|
switch (subcommand) {
|
|
@@ -172,11 +172,11 @@ async function run(argv) {
|
|
|
172
172
|
return await runToken(rest);
|
|
173
173
|
}
|
|
174
174
|
case "tools": {
|
|
175
|
-
const { runTools } = await import("./call-
|
|
175
|
+
const { runTools } = await import("./call-N3UTMHLY.js");
|
|
176
176
|
return await runTools(rest);
|
|
177
177
|
}
|
|
178
178
|
case "call": {
|
|
179
|
-
const { runCall } = await import("./call-
|
|
179
|
+
const { runCall } = await import("./call-N3UTMHLY.js");
|
|
180
180
|
return await runCall(rest);
|
|
181
181
|
}
|
|
182
182
|
default:
|
|
@@ -195,4 +195,4 @@ async function run(argv) {
|
|
|
195
195
|
export {
|
|
196
196
|
run
|
|
197
197
|
};
|
|
198
|
-
//# sourceMappingURL=chunk-
|
|
198
|
+
//# sourceMappingURL=chunk-52IG2UKP.js.map
|
package/dist/index.js
CHANGED