@trainheroic-unofficial/coach-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/LICENSE +21 -0
- package/README.md +56 -0
- package/dist/server.mjs +1554 -0
- package/package.json +45 -0
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@trainheroic-unofficial/coach-mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/alandotcom/trainheroic-skill.git",
|
|
8
|
+
"directory": "packages/coach-mcp"
|
|
9
|
+
},
|
|
10
|
+
"description": "Local single-user MCP server for a TrainHeroic coach. No database, no Cloudflare deps.",
|
|
11
|
+
"type": "module",
|
|
12
|
+
"bin": {
|
|
13
|
+
"trainheroic-coach-mcp": "./dist/server.mjs"
|
|
14
|
+
},
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
23
|
+
"zod": "^4.4.3",
|
|
24
|
+
"@trainheroic-unofficial/core": "0.1.0",
|
|
25
|
+
"@trainheroic-unofficial/js": "0.1.0"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@anthropic-ai/mcpb": "^2.1.2",
|
|
29
|
+
"@types/node": "^26.0.0",
|
|
30
|
+
"tsdown": "^0.22.3",
|
|
31
|
+
"tsx": "^4.22.4",
|
|
32
|
+
"typescript": "^6.0.3",
|
|
33
|
+
"vitest": "^4.1.9"
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"start": "tsx src/server.ts",
|
|
37
|
+
"inspect": "npx @modelcontextprotocol/inspector -e TRAINHEROIC_EMAIL=\"$TRAINHEROIC_EMAIL\" -e TRAINHEROIC_PASSWORD=\"$TRAINHEROIC_PASSWORD\" tsx src/server.ts",
|
|
38
|
+
"build": "tsdown",
|
|
39
|
+
"build:mcpb": "tsdown --config tsdown.mcpb.config.ts && mcpb pack ./mcpb ./dist/trainheroic-coach-mcp.mcpb",
|
|
40
|
+
"mcpb:validate": "mcpb validate ./mcpb/manifest.json",
|
|
41
|
+
"mcpb:sign": "mcpb sign --self-signed ./dist/trainheroic-coach-mcp.mcpb",
|
|
42
|
+
"typecheck": "tsc --noEmit",
|
|
43
|
+
"test": "vitest run --passWithNoTests"
|
|
44
|
+
}
|
|
45
|
+
}
|