mindvalley-products-mcp 1.0.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 +341 -0
- package/dist/263.js +1 -0
- package/dist/342.js +1 -0
- package/dist/462.js +1 -0
- package/dist/553.js +1 -0
- package/dist/stdio.js +2 -0
- package/package.json +57 -0
package/package.json
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
{
|
2
|
+
"name": "mindvalley-products-mcp",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"description": "Model Context Protocol (MCP) server providing AI assistants with structured data on Mindvalley's educational offerings - products, masterclasses, programs, and certifications",
|
5
|
+
"author": "Max Saad",
|
6
|
+
"license": "MIT",
|
7
|
+
"homepage": "https://github.com/mazemax/mindvalley-products-mcp",
|
8
|
+
"repository": {
|
9
|
+
"type": "git",
|
10
|
+
"url": "git+https://github.com/mazemax/mindvalley-products-mcp.git"
|
11
|
+
},
|
12
|
+
"bugs": {
|
13
|
+
"url": "https://github.com/mazemax/mindvalley-products-mcp/issues"
|
14
|
+
},
|
15
|
+
"keywords": [
|
16
|
+
"mcp",
|
17
|
+
"model-context-protocol",
|
18
|
+
"mindvalley",
|
19
|
+
"ai",
|
20
|
+
"assistant",
|
21
|
+
"tools",
|
22
|
+
"education",
|
23
|
+
"learning",
|
24
|
+
"xmcp",
|
25
|
+
"claude",
|
26
|
+
"openai"
|
27
|
+
],
|
28
|
+
"packageManager": "pnpm@9.0.0",
|
29
|
+
"engines": {
|
30
|
+
"node": ">=20.0.0"
|
31
|
+
},
|
32
|
+
"scripts": {
|
33
|
+
"build": "xmcp build",
|
34
|
+
"dev": "xmcp dev",
|
35
|
+
"start": "node dist/stdio.js",
|
36
|
+
"test": "xmcp build && tsx test-tools.ts",
|
37
|
+
"prepublishOnly": "pnpm run build",
|
38
|
+
"clean": "rm -rf dist",
|
39
|
+
"typecheck": "tsc --noEmit",
|
40
|
+
"lint": "echo 'Linting not configured yet'",
|
41
|
+
"format": "echo 'Formatting not configured yet'"
|
42
|
+
},
|
43
|
+
"dependencies": {
|
44
|
+
"xmcp": "0.3.2",
|
45
|
+
"zod": "3.24.4"
|
46
|
+
},
|
47
|
+
"main": "./dist/stdio.js",
|
48
|
+
"files": [
|
49
|
+
"dist"
|
50
|
+
],
|
51
|
+
"bin": {
|
52
|
+
"mindvalley-products-mcp": "./dist/stdio.js"
|
53
|
+
},
|
54
|
+
"devDependencies": {
|
55
|
+
"tsx": "^4.20.6"
|
56
|
+
}
|
57
|
+
}
|