-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
42 lines (42 loc) · 1.24 KB
/
server.json
File metadata and controls
42 lines (42 loc) · 1.24 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.DivoomDevelop/mcp-divoom-lan",
"description": "MCP server for Divoom LAN watchface APIs; read-before-write safe. V2 editor linked in README.",
"title": "Divoom LAN Watchface",
"repository": {
"url": "https://github.com/DivoomDevelop/mcp-divoom-lan",
"source": "github"
},
"websiteUrl": "https://github.com/DivoomDevelop/mcp-divoom-lan",
"version": "0.1.2",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "mcp-divoom-lan",
"version": "0.1.2",
"runtimeHint": "npx",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "DIVOOM_DEVICE_HOST",
"description": "Divoom device LAN IP address",
"isRequired": true,
"isSecret": false
},
{
"name": "DIVOOM_DEVICE_PORT",
"description": "Divoom device HTTP port",
"default": "9000"
},
{
"name": "DIVOOM_TIMEOUT_MS",
"description": "HTTP request timeout in milliseconds",
"default": "45000"
}
]
}
]
}