io.github.verygoodplugins/streamdeck-mcp
平台与服务by verygoodplugins
用于控制 Elgato Stream Deck 的 MCP 服务器,可设置按键、管理页面并连接自动化操作。
什么是 io.github.verygoodplugins/streamdeck-mcp?
用于控制 Elgato Stream Deck 的 MCP 服务器,可设置按键、管理页面并连接自动化操作。
README
Tell your AI what Stream Deck you want. Get back a polished profile with buttons, icons, colors, dials, touch-strip art, and the shell scripts behind it. Stream Deck MCP writes the same profile format the Elgato desktop app already uses, so agents can author real local decks without making you build a Stream Deck plugin first.
It works with Claude Desktop, Claude Code, Cursor, Codex, and any MCP client that can launch a stdio server.
Quick Start
Claude Code:
claude mcp add streamdeck -- uvx streamdeck-mcp
Claude Desktop, Cursor, Codex, and other MCP clients can use the same command:
{
"mcpServers": {
"streamdeck": {
"command": "uvx",
"args": ["streamdeck-mcp"]
}
}
}
Then ask your agent for a deck:
Make me a Slack control board for my Stream Deck + XL.
For Claude Code, install the bundled designer skill for better layout, palette, hardware, and plugin-action guidance:
uvx --from streamdeck-mcp streamdeck-mcp-install-skill
Demo
<video src="https://github.com/user-attachments/assets/970c8973-f8ff-4a5d-ad48-cde3f3b1fc65"></video>
<p align="center"> <sub>Product trailer generated with Remotion, showing hardware inventory, plugin discovery, configured action reuse, and a final Stream Deck + XL reveal.</sub> </p>Features
- Profile-native authoring - reads and writes Elgato
ProfilesV3files directly, withProfilesV2fallback for older installs. - Hardware inventory - discovers profile pages, device model names, key geometry, dials, and touch-strip support before writing.
- Installed plugin discovery - scans readable Stream Deck plugin manifests with
streamdeck_read_pluginsso agents can find plugin and action UUIDs. - Configured plugin action reuse - reads existing buttons with
streamdeck_read_pageand preserves plugin-specific settings by copyingbutton.raw; it does not infer private property-inspector settings. - Offline icon generation - renders button and touch-strip PNGs from about 7,400 bundled Material Design Icons, or from short text labels.
- Script-backed automations - creates executable shell scripts in
~/StreamDeckScripts/and wires them to Stream Deck Open actions. - Dial and touch-strip support - installs a minimal bundled Stream Deck plugin when needed so encoder imagery survives app restarts.
- Safe write cycle - guards against the Elgato app overwriting manifest edits by enforcing a quit, write, relaunch workflow.
Agentic Workflows
The point is not generic buttons. When your agent also has Slack, Home Assistant, OBS, GitHub, Hue, Spotify, or other MCP servers loaded, it can query those systems first and build around what is actually in your environment.
Try prompts like:
- "Make me a control board for Slack." Query channels, status, and unread state; create channel jumps, status toggles, read-all controls, and dials.
- "A hello-kitty-themed Home Assistant dashboard for the living room." Discover living-room entities, then lay out scenes, lights, and media controls in a matching visual style.
- "OBS control panel based on my actual scenes and audio inputs." Read scenes, sources, and devices; write scene switches, source toggles, and per-input dial controls.
- "A dev deck for this repo in Nordic colors." Read project scripts and GitHub context; create local command buttons, PR links, and CI shortcuts.
- "A Friday demo deck." Compose across Zoom, Slack, Hue, and screen recording by generating local scripts and wiring them to one page.
Iteration is cheap: change the prompt, rerun the authoring flow, and get a new profile.
Install
The packaged entrypoint is streamdeck-mcp, run through uvx.
Cursor
Or paste into ~/.cursor/mcp.json:
{
"mcpServers": {
"streamdeck": {
"command": "uvx",
"args": ["streamdeck-mcp"]
}
}
}
Claude Desktop
Paste into ~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%\Claude\claude_desktop_config.json on Windows, then restart Claude Desktop:
{
"mcpServers": {
"streamdeck": {
"command": "uvx",
"args": ["streamdeck-mcp"]
}
}
}
Claude Code
claude mcp add streamdeck -- uvx streamdeck-mcp
OpenAI Codex
Add to ~/.codex/config.toml:
[mcp_servers.streamdeck]
command = "uvx"
args = ["streamdeck-mcp"]
Other MCP Clients
Anything that speaks MCP over stdio works the same way: point it at uvx streamdeck-mcp.
Linux and Headless Setups
The default profile writer targets the Elgato Stream Deck desktop app, which is available on macOS and Windows. On Linux, headless machines, or setups where you want the MCP server to own the hardware directly, use the legacy USB server:
uvx --from streamdeck-mcp streamdeck-mcp-usb
Client config shape:
{
"mcpServers": {
"streamdeck": {
"command": "uvx",
"args": ["--from", "streamdeck-mcp", "streamdeck-mcp-usb"]
}
}
}
Tools
| Tool | What it does |
|---|---|
streamdeck_read_plugins | Lists installed Stream Deck plugins and declared actions from readable plugin manifests. Protected or binary manifests are reported with diagnostics instead of failing the whole catalog. |
streamdeck_read_profiles | Lists desktop profiles, device metadata, page directories, and active profile roots from ProfilesV3 or ProfilesV2. |
streamdeck_read_page | Reads a page manifest and returns simplified button details plus raw native action objects. |
streamdeck_write_page | Creates or rewrites a page manifest. Use copied button.raw values when reusing configured third-party plugin actions. |
streamdeck_create_icon | Generates button or touch-strip PNGs from Material Design Icons or text. Icons are bundled offline; unknown names return close-match suggestions. |
streamdeck_create_action | Creates an executable shell script in ~/StreamDeckScripts/ and returns an Open action block. |
streamdeck_restart_app | Restarts the macOS Stream Deck desktop app after profile changes. |
streamdeck_install_mcp_plugin | Installs the bundled streamdeck-mcp Stream Deck plugin used for durable encoder imagery. Usually auto-installed by streamdeck_write_page. |
Prompt support:
| Prompt | What it does |
|---|---|
design_streamdeck_deck | Gives non-skill-aware MCP clients a condensed deck-design briefing before the user describes the deck they want. |
streamdeck-designer Skill
Stream Deck MCP ships with an Agent Skill for Claude Code that teaches the agent how to plan, theme, and author full decks end to end.
Install it with:
uvx --from streamdeck-mcp streamdeck-mcp-install-skill
The skill is copied to ~/.claude/skills/streamdeck-designer/. Restart Claude Code or start a new session after installing it. Re-run with --force to upgrade after a package update.
The skill covers:
- Hardware inventory and model-specific layout planning.
- Theme palettes, typography strategy, and icon-color guidance.
- Dial and touch-strip authoring for Stream Deck + and + XL devices.
- Integration recipes for Hue, OBS, Spotify, Home Assistant, Twitch, shell commands, and browser workflows.
- Existing plugin action reuse through
streamdeck_read_pageandbutton.raw.
Clients that do not load Claude Code skills can invoke the design_streamdeck_deck MCP prompt instead.
Development
git clone https://github.com/verygoodplugins/streamdeck-mcp.git
cd streamdeck-mcp
uv venv && uv pip install -e ".[dev]"
uv run pytest tests/ -v
uv run ruff check .
To audit this repo against the shared Very Good Plugins MCP standards:
../mcp-ecosystem/scripts/audit-server.sh .
Authoring Notes
ProfilesV3is preferred when present.ProfilesV2is still supported, but existing pages should be targeted bydirectory_idorpage_indexbecause Elgato uses opaque directory names there.- The Elgato desktop app keeps profiles in memory and can overwrite on-disk manifest edits when it quits.
streamdeck_write_pageraisesStreamDeckAppRunningErrorwhen the app is running andauto_quit_appis not set. - On macOS, pass
auto_quit_app: trueto quit the app before writing, then callstreamdeck_restart_appwhen done. On Windows, quit and relaunch the Elgato app manually. - Set
STREAMDECK_APP_PATHif your Elgato app is not installed at/Applications/Elgato Stream Deck.app. - Generated icons live in
~/.streamdeck-mcp/generated-icons/. Generated shell scripts live in~/StreamDeckScripts/.
Legacy USB Mode
The original USB-direct server is preserved for backwards compatibility. It exposes direct hardware tools:
streamdeck_list_devices, streamdeck_connect, streamdeck_info, streamdeck_set_button, streamdeck_set_buttons, streamdeck_clear_button, streamdeck_get_button, streamdeck_clear_all, streamdeck_set_brightness, streamdeck_create_page, streamdeck_switch_page, streamdeck_list_pages, streamdeck_delete_page, streamdeck_disconnect.
When multiple decks are attached, call streamdeck_list_devices first, then pass the desired serial to streamdeck_connect. Omitting serial preserves the legacy behavior of opening the first enumerated deck.
Run it with:
uvx --from streamdeck-mcp streamdeck-mcp-usb
Support
Built by Very Good Plugins.
常见问题
io.github.verygoodplugins/streamdeck-mcp 是什么?
用于控制 Elgato Stream Deck 的 MCP 服务器,可设置按键、管理页面并连接自动化操作。
相关 Skills
Slack动图
by anthropics
面向Slack的动图制作Skill,内置emoji/消息GIF的尺寸、帧率和色彩约束、校验与优化流程,适合把创意或上传图片快速做成可直接发送的Slack动画。
✎ 帮你快速做出适配 Slack 的动图,内置约束规则和校验工具,少踩上传与播放坑,做表情包和演示都更省心。
MCP构建
by anthropics
聚焦高质量 MCP Server 开发,覆盖协议研究、工具设计、错误处理与传输选型,适合用 FastMCP 或 MCP SDK 对接外部 API、封装服务能力。
✎ 想让 LLM 稳定调用外部 API,就用 MCP构建:从 Python 到 Node 都有成熟指引,帮你更快做出高质量 MCP 服务器。
接口测试套件
by alirezarezvani
扫描 Next.js、Express、FastAPI、Django REST 的 API 路由,自动生成覆盖鉴权、参数校验、错误码、分页、上传与限流场景的 Vitest 或 Pytest 测试套件。
✎ 帮你把API与集成测试自动化跑顺,减少回归漏测;能力全面,尤其适合复杂接口场景的QA团队。
相关 MCP Server
Slack 消息
编辑精选by Anthropic
Slack 是让 AI 助手直接读写你的 Slack 频道和消息的 MCP 服务器。
✎ 这个服务器解决了团队协作中需要 AI 实时获取 Slack 信息的痛点,特别适合开发团队让 Claude 帮忙汇总频道讨论或发送通知。不过,它目前只是参考实现,文档有限,不建议在生产环境直接使用——更适合开发者学习 MCP 如何集成第三方服务。
by netdata
io.github.netdata/mcp-server 是让 AI 助手实时监控服务器指标和日志的 MCP 服务器。
✎ 这个工具解决了运维人员需要手动检查系统状态的痛点,最适合 DevOps 团队让 Claude 自动分析性能数据。不过,它依赖 NetData 的现有部署,如果你没用过这个监控平台,得先花时间配置。
by d4vinci
Scrapling MCP Server 是专为现代网页设计的智能爬虫工具,支持绕过 Cloudflare 等反爬机制。
✎ 这个工具解决了爬取动态网页和反爬网站时的头疼问题,特别适合需要批量采集电商价格或新闻数据的开发者。不过,它依赖外部浏览器引擎,资源消耗较大,不适合轻量级任务。