@tempo-ai/mcp 0.0.100-staging.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 +62 -0
- package/dist/bin.js +18 -0
- package/dist/bin.js.map +1 -0
- package/dist/chunk-JDPG7F4Z.js +688 -0
- package/dist/chunk-JDPG7F4Z.js.map +1 -0
- package/dist/chunk-QTTJRK4J.js +156 -0
- package/dist/chunk-QTTJRK4J.js.map +1 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -0
- package/dist/serve-OI2RGYVP.js +46873 -0
- package/dist/serve-OI2RGYVP.js.map +1 -0
- package/package.json +78 -0
package/package.json
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@tempo-ai/mcp",
|
|
3
|
+
"version": "0.0.100-staging.1",
|
|
4
|
+
"description": "Tempo MCP server for Claude Code, Codex, Cursor, and any other MCP-compatible host. One server exposing Tempo's issues, docs, comments, agents, scripts, Slack, Linear, and canvas toolsets.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"tempo-mcp": "./dist/bin.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"import": "./dist/index.js",
|
|
16
|
+
"types": "./dist/index.d.ts"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
21
|
+
},
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "https://github.com/trytempo/tempo.git",
|
|
25
|
+
"directory": "tempo-modules/mcp-cli"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"mcp",
|
|
29
|
+
"model-context-protocol",
|
|
30
|
+
"tempo",
|
|
31
|
+
"claude-code",
|
|
32
|
+
"codex",
|
|
33
|
+
"ai-tools"
|
|
34
|
+
],
|
|
35
|
+
"engines": {
|
|
36
|
+
"node": ">=20"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
40
|
+
"@parcel/watcher": "^2.5.0",
|
|
41
|
+
"convex": "^1.21.0",
|
|
42
|
+
"lightningcss": "^1.29.1",
|
|
43
|
+
"oxc-parser": "^0.110.0",
|
|
44
|
+
"typescript": "^5.8.2",
|
|
45
|
+
"zod": "^3.25.0"
|
|
46
|
+
},
|
|
47
|
+
"optionalDependencies": {
|
|
48
|
+
"playwright": "^1.58.2"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@tempo-modules/agents-mcp": "workspace:*",
|
|
52
|
+
"@tempo-modules/auth": "workspace:*",
|
|
53
|
+
"@tempo-modules/canvas-capture-headless": "workspace:*",
|
|
54
|
+
"@tempo-modules/canvas-comments-mcp": "workspace:*",
|
|
55
|
+
"@tempo-modules/canvas-mcp": "workspace:*",
|
|
56
|
+
"@tempo-modules/doc-editor": "workspace:*",
|
|
57
|
+
"@tempo-modules/issues-mcp": "workspace:*",
|
|
58
|
+
"@tempo-modules/linear-mcp": "workspace:*",
|
|
59
|
+
"@tempo-modules/mcp-runtime": "workspace:*",
|
|
60
|
+
"@tempo-modules/scripts-mcp": "workspace:*",
|
|
61
|
+
"@tempo-modules/slack-mcp": "workspace:*",
|
|
62
|
+
"@tempo-modules/convex-http-client-auth": "workspace:*",
|
|
63
|
+
"@tempo-modules/workspaces-git-worktree": "workspace:*",
|
|
64
|
+
"@types/node": "^25.0.8",
|
|
65
|
+
"@types/pngjs": "^6.0.5",
|
|
66
|
+
"pngjs": "^7.0.0",
|
|
67
|
+
"simple-git": "^3.27.0",
|
|
68
|
+
"tsup": "^8.5.1",
|
|
69
|
+
"vitest": "^3.1.1"
|
|
70
|
+
},
|
|
71
|
+
"scripts": {
|
|
72
|
+
"build": "tsup",
|
|
73
|
+
"prepare": "tsup",
|
|
74
|
+
"prepublishOnly": "pnpm build && pnpm test",
|
|
75
|
+
"test": "vitest run",
|
|
76
|
+
"test:watch": "vitest"
|
|
77
|
+
}
|
|
78
|
+
}
|