-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 975 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 975 Bytes
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
{
"name": "claude-context-hub",
"version": "0.1.0",
"description": "A shared MCP server that bridges Claude.ai and Claude Code — your personal AI context hub deployed on Cloudflare Workers for free.",
"main": "src/index.ts",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"db:migrate": "wrangler d1 execute context-hub-db --local --file=./migrations/0001_init.sql",
"db:migrate:remote": "wrangler d1 execute context-hub-db --remote --file=./migrations/0001_init.sql",
"typecheck": "tsc --noEmit",
"lint": "eslint src/"
},
"keywords": [
"mcp",
"claude",
"claude-code",
"cloudflare-workers",
"ai-context",
"model-context-protocol"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "1.25.2",
"agents": "^0.3.6"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250313.0",
"typescript": "^5.7.0",
"wrangler": "^4.0.0"
}
}