-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathserver.json
More file actions
57 lines (57 loc) · 1.54 KB
/
server.json
File metadata and controls
57 lines (57 loc) · 1.54 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.relayprotocol/relay-mcp",
"description": "Cross-chain bridge and swap quotes, fee estimation, and transaction tracking via Relay Protocol.",
"title": "Relay",
"websiteUrl": "https://relay.link",
"repository": {
"url": "https://github.com/reservoirprotocol/relay-mcp",
"source": "github"
},
"icons": [
{
"src": "https://docs.relay.link/favicon.png",
"mimeType": "image/png",
"sizes": ["32x32"],
"theme": "dark"
},
{
"src": "https://docs.relay.link/logo/relay-black.svg",
"mimeType": "image/svg+xml",
"sizes": ["any"],
"theme": "light"
},
{
"src": "https://docs.relay.link/logo/relay-white.svg",
"mimeType": "image/svg+xml",
"sizes": ["any"],
"theme": "dark"
}
],
"version": "0.3.0",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "@relayprotocol/relay-mcp",
"version": "0.3.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "RELAY_API_KEY",
"description": "Optional API key for higher rate limits",
"isRequired": false,
"isSecret": true
},
{
"name": "RELAY_API_URL",
"description": "Relay API base URL (default: https://api.relay.link)",
"isRequired": false,
"isSecret": false
}
]
}
]
}