-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.51 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.51 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
49
50
51
52
53
54
55
56
57
58
{
"name": "@drbinary/claude-mcp-server",
"version": "1.0.1",
"description": "MCP server for Dr. Binary integration with OAuth authentication",
"keywords": [
"mcp",
"model-context-protocol",
"deepbits",
"dr. binary",
"oauth",
"server"
],
"homepage": "https://github.com/DeepBitsTechnology/dr-binary-mcp-server#readme",
"bugs": {
"url": "https://github.com/DeepBitsTechnology/dr-binary-mcp-server/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DeepBitsTechnology/dr-binary-mcp-server.git"
},
"license": "MIT",
"author": "Sheng Yu <sheng@deepbits.com> (https://drbinary.ai)",
"type": "module",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"claude-mcp-server": "bin/run.js"
},
"files": [
"dist",
"bin",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"prepare": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.2",
"express": "^4.18.2",
"form-data": "^4.0.4",
"json-schema-to-zod": "^2.6.1",
"node-fetch": "^3.3.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/express": "^4.17.25",
"@types/node": "^24.10.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.16.1+sha512.0e155aa2629db8672b49e8475da6226aa4bdea85fdcdfdc15350874946d4f3c91faaf64cbdc4a5d1ab8002f473d5c3fcedcd197989cf0390f9badd3c04678706"
}