-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.06 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.06 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
{
"name": "apple-developer-docs-mcp",
"version": "1.4.0",
"description": "An MCP server that fetches the right data from Apple's developer documentation site",
"main": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/joshspicer/apple-developer-docs-mcp.git"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "node test/server-test.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"apple",
"developer",
"documentation",
"ai",
"assistant"
],
"author": "Josh Spicer",
"license": "MIT",
"devDependencies": {
"@types/cheerio": "^1.0.0",
"@types/node": "^25.2.0",
"typescript": "^5.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.16.0",
"@types/adm-zip": "^0.5.7",
"adm-zip": "^0.5.16",
"cheerio": "^1.1.0",
"node-fetch": "^3.3.0"
},
"bin": {
"apple-developer-docs-mcp": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
]
}