-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathserver.json
More file actions
45 lines (45 loc) · 1.35 KB
/
Copy pathserver.json
File metadata and controls
45 lines (45 loc) · 1.35 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.joaoh82/rustunnel",
"title": "rustunnel",
"description": "Give AI agents public HTTPS/TCP/UDP URLs for any localhost service. Open source, self-hostable.",
"repository": {
"url": "https://github.com/joaoh82/rustunnel",
"source": "github"
},
"websiteUrl": "https://rustunnel.com",
"version": "0.8.1",
"packages": [
{
"registryType": "cargo",
"identifier": "rustunnel-mcp",
"version": "0.8.1",
"transport": {
"type": "stdio"
},
"packageArguments": [
{
"type": "named",
"name": "--server",
"value": "eu.edge.rustunnel.com:4040",
"description": "rustunnel control-plane address (your own host:4040 when self-hosting)"
},
{
"type": "named",
"name": "--api",
"value": "https://eu.edge.rustunnel.com:8443",
"description": "rustunnel dashboard REST API base URL"
}
],
"environmentVariables": [
{
"name": "RUSTUNNEL_TOKEN",
"description": "API token from rustunnel.com → Dashboard → API Keys (or your self-hosted admin token)",
"isRequired": true,
"isSecret": true,
"format": "string"
}
]
}
]
}