-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.39 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.39 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
{
"name": "apple-docs-mcp-server",
"version": "2.4.0",
"description": "🍎 MCP server for semantic search through Apple developer documentation, WWDC transcripts, and code examples. 16K+ documents indexed for AI agents.",
"type": "module",
"main": "server.js",
"keywords": ["mcp", "apple", "documentation", "semantic-search", "ai-agent", "cursor", "swift", "ios", "macos", "wwdc", "vector-database"],
"author": "bbssppllvv",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bbssppllvv/apple-docs-mcp-server.git"
},
"homepage": "https://github.com/bbssppllvv/apple-docs-mcp-server",
"bugs": {
"url": "https://github.com/bbssppllvv/apple-docs-mcp-server/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.4",
"better-sqlite3": "^11.3.0",
"dotenv": "^16.4.5",
"openai": "^4.0.0",
"p-limit": "^6.0.0"
},
"scripts": {
"start": "node server.js",
"mcp": "./run-mcp-safe.sh",
"postinstall": "node postinstall.js",
"test": "echo '✅ No tests configured yet. Run npm start to test manually.'",
"check": "./run-mcp-safe.sh < test-input.json || echo 'Manual testing required'"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"server.js",
"search.js",
"compatibility-analyzer.js",
"postinstall.js",
"run-mcp-safe.sh",
".env.example",
"README.md",
"LICENSE"
]
}