-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.2 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.2 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
{
"name": "@relayprotocol/relay-mcp",
"version": "0.4.0",
"description": "MCP server for Relay Protocol — cross-chain bridge and swap quotes, token search, and fee estimation for AI agents",
"type": "module",
"license": "MIT",
"bin": {
"relay-mcp": "dist/index.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/reservoirprotocol/relay-mcp.git"
},
"homepage": "https://relay.link",
"mcpName": "io.github.relayprotocol/relay-mcp",
"keywords": [
"mcp",
"relay",
"bridge",
"swap",
"cross-chain",
"ai",
"agent"
],
"scripts": {
"build": "node build.mjs",
"start": "node dist/index.js",
"test": "vitest run --exclude 'src/integration.test.ts'",
"test:integration": "vitest run src/integration.test.ts",
"test:all": "vitest run",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.1",
"express": "^5.2.1",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^22.14.1",
"typescript": "^5.8.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20"
}
}