-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
50 lines (50 loc) · 1.14 KB
/
package.json
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
{
"name": "mcp-guide",
"version": "0.1.5",
"description": "A beginner-friendly guide server that helps users understand MCP concepts, provides interactive examples, and demonstrates best practices for building MCP integrations.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"mcp-guide": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"guide",
"tutorial",
"documentation",
"model-context-protocol",
"ai",
"llm"
],
"author": "qpd-v",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/qpd-v/mcp-guide.git"
},
"bugs": {
"url": "https://github.com/qpd-v/mcp-guide/issues"
},
"homepage": "https://github.com/qpd-v/mcp-guide#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=16.0.0"
}
}