-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "arvo-mcp",
"version": "1.0.2",
"description": "Official MCP server for Arvo - AI workout coach. Access your training data through Claude Desktop, Cursor, and other MCP clients.",
"keywords": [
"mcp",
"model-context-protocol",
"fitness",
"workout",
"ai-coaching",
"claude",
"cursor",
"typescript",
"personal-trainer",
"workout-tracker",
"ai-assistant",
"llm-integration",
"fitness-tracking",
"workout-planning",
"exercise-api",
"training-data",
"claude-integration",
"health-data",
"ai-tools"
],
"author": "Arvo Health <hello@arvo.guru>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/khaoss85/arvo-mcp.git"
},
"homepage": "https://arvo.guru",
"bugs": {
"url": "https://github.com/khaoss85/arvo-mcp/issues"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"arvo-mcp": "bin/arvo-mcp.js"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src",
"test": "vitest",
"test:run": "vitest run",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"tsup": "^8.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}