loading…
Search for a command to run...
loading…
Enables AI to generate fully authored Elgato Stream Deck profiles with buttons, icons, colors, dials, and shell scripts from natural language prompts.
Enables AI to generate fully authored Elgato Stream Deck profiles with buttons, icons, colors, dials, and shell scripts from natural language prompts.
Stream Deck MCP lets agents build and reconfigure real Elgato Stream Deck profiles.
Quick Start · Demo · Features · Tools · Development
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.
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
Product trailer generated with Remotion, showing hardware inventory, plugin discovery, configured action reuse, and a final Stream Deck + XL reveal.
ProfilesV3 files directly, with ProfilesV2 fallback for older installs.streamdeck_read_plugins so agents can find plugin and action UUIDs.streamdeck_read_page and preserves plugin-specific settings by copying button.raw; it does not infer private property-inspector settings.~/StreamDeckScripts/ and wires them to Stream Deck Open actions.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:
Iteration is cheap: change the prompt, rerun the authoring flow, and get a new profile.
The packaged entrypoint is streamdeck-mcp, run through uvx.
Or paste into ~/.cursor/mcp.json:
{
"mcpServers": {
"streamdeck": {
"command": "uvx",
"args": ["streamdeck-mcp"]
}
}
}
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 mcp add streamdeck -- uvx streamdeck-mcp
Add to ~/.codex/config.toml:
[mcp_servers.streamdeck]
command = "uvx"
args = ["streamdeck-mcp"]
Anything that speaks MCP over stdio works the same way: point it at uvx streamdeck-mcp.
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"]
}
}
}
| 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. |
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:
streamdeck_read_page and button.raw.Clients that do not load Claude Code skills can invoke the design_streamdeck_deck MCP prompt instead.
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 .
ProfilesV3 is preferred when present. ProfilesV2 is still supported, but existing pages should be targeted by directory_id or page_index because Elgato uses opaque directory names there.streamdeck_write_page raises StreamDeckAppRunningError when the app is running and auto_quit_app is not set.auto_quit_app: true to quit the app before writing, then call streamdeck_restart_app when done. On Windows, quit and relaunch the Elgato app manually.STREAMDECK_APP_PATH if your Elgato app is not installed at /Applications/Elgato Stream Deck.app.~/.streamdeck-mcp/generated-icons/. Generated shell scripts live in ~/StreamDeckScripts/.The original USB-direct server is preserved for backwards compatibility. It exposes direct hardware tools:
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.
Run it with:
uvx --from streamdeck-mcp streamdeck-mcp-usb
Built by Very Good Plugins.
Run in your terminal:
claude mcp add streamdeck-mcp -- npx Security
Low riskAutomated heuristic from public metadata — not a security guarantee.