-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathserver.json
More file actions
58 lines (58 loc) · 1.65 KB
/
server.json
File metadata and controls
58 lines (58 loc) · 1.65 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
58
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.verygoodplugins/streamdeck-mcp",
"title": "Stream Deck MCP",
"description": "Write Stream Deck desktop profiles with a legacy USB fallback.",
"version": "0.2.0",
"websiteUrl": "https://verygoodplugins.com/?utm_source=mcp-registry",
"repository": {
"url": "https://github.com/verygoodplugins/streamdeck-mcp",
"source": "github"
},
"packages": [
{
"registryType": "pypi",
"identifier": "streamdeck-mcp",
"version": "0.2.0",
"transport": {
"type": "stdio"
},
"runtime": "python",
"runtimeVersion": ">=3.11"
}
],
"tools": [
{
"name": "streamdeck_read_profiles",
"description": "List desktop profiles from ProfilesV3 or ProfilesV2."
},
{
"name": "streamdeck_read_page",
"description": "Read a profile page by index or directory ID."
},
{
"name": "streamdeck_write_page",
"description": "Create or rewrite a Stream Deck desktop page manifest."
},
{
"name": "streamdeck_create_icon",
"description": "Generate a 72x72 PNG icon from a Material Design Icons name (e.g. 'mdi:cpu-64-bit') or text. ~7400 MDI glyphs are bundled for offline rendering."
},
{
"name": "streamdeck_create_action",
"description": "Create a script-backed Open action block."
},
{
"name": "streamdeck_restart_app",
"description": "Restart the Stream Deck desktop app on macOS."
}
],
"license": "MIT",
"keywords": [
"streamdeck",
"elgato",
"profiles",
"automation",
"mcp"
]
}