-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathserver.json
More file actions
44 lines (44 loc) · 1.39 KB
/
Copy pathserver.json
File metadata and controls
44 lines (44 loc) · 1.39 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "live.nodrix/nodrix",
"title": "nodrix",
"description": "Read live and historical IoT telemetry and actuate ESP32/Arduino hardware from a backend you host.",
"version": "1.0.1",
"websiteUrl": "https://nodrix.live",
"repository": {
"url": "https://github.com/decoded-cipher/nodrix",
"source": "github"
},
"remotes": [
{
"type": "streamable-http",
"url": "https://{host}/v1/mcp/oauth",
"variables": {
"host": {
"description": "Hostname of your nodrix deployment, without the scheme. Sign-in happens over OAuth.",
"placeholder": "nodrix.your-subdomain.workers.dev",
"isRequired": true
}
}
},
{
"type": "streamable-http",
"url": "https://{host}/v1/mcp",
"variables": {
"host": {
"description": "Hostname of your nodrix deployment, without the scheme. Authenticates with a bearer token.",
"placeholder": "nodrix.your-subdomain.workers.dev",
"isRequired": true
}
},
"headers": [
{
"name": "Authorization",
"description": "A nodrix API token, prefixed with 'Bearer '. Mint one in Settings, and enable MCP under Settings > More.",
"isRequired": true,
"isSecret": true
}
]
}
]
}