-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.34 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.34 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
{
"name": "@debridge-finance/debridge-mcp",
"version": "0.1.5",
"description": "Thin MCP proxy client for deBridge — connects to the hosted MCPd at agents.debridge.com",
"type": "module",
"main": "dist/index.js",
"bin": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"dev:http": "MCP_TRANSPORT=http PORT=3000 tsx src/index.ts",
"start": "node dist/index.js",
"start:http": "MCP_TRANSPORT=http node dist/index.js",
"inspect": "npx @modelcontextprotocol/inspector tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"debridge",
"dln",
"mcp",
"cross-chain",
"same-chain",
"bridge",
"defi",
"swap"
],
"author": "deBridge",
"license": "MIT",
"files": [
"dist",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/debridge-finance/debridge-mcp.git"
},
"mcpName": "io.github.debridge-finance/debridge-mcp",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"express": "^5.2.1"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^22.19.9",
"@types/supertest": "^6.0.3",
"supertest": "^7.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}