Skip to main content
Glama

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

Related MCP server: Elgato MCP Server

Demo

Features

  • Profile-native authoring - reads and writes Elgato ProfilesV3 files directly, with ProfilesV2 fallback for older installs.

  • Hardware inventory - discovers profile pages, device model names, key geometry, dials, and touch-strip support before writing.

  • Configured action search - streamdeck_find_actions scans existing profiles/pages for paste-ready plugin buttons and dials (including protected first-party Elgato plugins configured in the app).

  • Installed plugin discovery - scans readable Stream Deck plugin manifests with streamdeck_read_plugins so agents can find plugin and action UUIDs when synthesizing new actions.

  • Configured plugin action reuse - prefers copying existing actions via find_actions or streamdeck_read_page's button.raw so private Property Inspector settings stay intact.

  • 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 when no plugin action fits.

  • 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. Prefer reusing actions the user already configured in the Stream Deck app (Hue, OBS, Home Assistant, Spotify plugins, etc.), then compose them onto a themed page. When your agent also has Slack, Home Assistant, OBS, GitHub, Hue, Spotify, or other MCP servers loaded, it can query those systems to pick the right entities — and still wire the deck through native plugin actions when available, falling back to scripts only when needed.

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." Find existing HA plugin buttons with streamdeck_find_actions, then lay them out with a matching visual style — or discover living-room entities via MCP and synthesize/scripts when nothing is configured yet.

  • "OBS control panel based on my actual scenes and audio inputs." Reuse configured OBS plugin actions when present; otherwise read scenes/sources and 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 finding configured plugin actions first, then generating local scripts for the gaps.

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

Install MCP Server

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_find_actions

Searches configured buttons/dials across profiles and returns paste-ready native action objects for streamdeck_write_page.

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. Prefer action from find_actions / button.raw 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_find_actions and streamdeck_read_page / button.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

  • 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.

  • The Elgato desktop app keeps profiles in memory and can overwrite on-disk manifest edits when it quits. streamdeck_write_page raises StreamDeckAppRunningError when the app is running and auto_quit_app is not set.

  • On macOS, pass 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.

  • Set STREAMDECK_APP_PATH if 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.

Available Tools

7 tools
streamdeck_create_actionB

Create an executable shell script in ~/StreamDeckScripts and return a native Open action block for it.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesHuman-readable action name used for the script filename and button label.
commandYesShell command to run when the button is pressed.
working_directoryNoOptional working directory to cd into before executing the command.
filenameNoOptional override for the script filename.

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description bears full responsibility. It states the tool creates a script in a specific directory and returns an action block, but it does not disclose whether existing files are overwritten, what permissions are needed, or what happens if the directory does not exist. These are critical behavioral traits for a mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that efficiently conveys the core action and the return value. It is front-loaded with the verb 'Create' and the key resources, with no redundant or extraneous text.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 4 parameters and no output schema, the description is fairly complete, covering the main effect (script creation) and output (action block). It could be improved by mentioning that the script is saved in a fixed directory and any prerequisite about the target directory's existence, but it is largely sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, and the schema already explains each parameter (name, command, working_directory, filename) clearly. The tool description adds no additional meaning beyond the schema, so a baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'create' and the specific resources involved: an executable shell script in ~/StreamDeckScripts and a native Open action block. The purpose is distinct from sibling tools like streamdeck_create_icon or streamdeck_read_page, which handle icons or reading profiles.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no explicit guidance on when to use this tool vs. alternatives. It does not mention when not to use it, such as for batch creation or editing existing actions, nor does it reference sibling tools like streamdeck_write_page for page-level updates.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

streamdeck_create_iconA

Generate one or many PNG icons. Button icons are 72x72 px; touchstrip segment icons are 200x100 px (use shape='touchstrip'). For a single icon: pass 'icon' (a Material Design Icons name like 'mdi:cpu-64-bit') OR 'text' (mutually exclusive with 'icon' — titles go on streamdeck_write_page's 'title' field since Elgato overlays them on images). For a full deck (often 30+ icons): pass 'icons' as a list of spec dicts to generate them all in one call and avoid the round-trip timeouts serial calls hit. ~7400 MDI icons bundled offline; unknown names return close-match suggestions. Returns either a single {path, size, ...} dict or {"icons": [...]} when 'icons' is used (each list element is a per-icon result or an {"error"} entry for that spec).

ParametersJSON Schema
NameRequiredDescriptionDefault
iconNoMaterial Design Icons name, e.g. 'mdi:cpu-64-bit', 'mdi:volume-high', 'mdi:microphone'. The 'mdi:' prefix is optional. Aliases are honored.
icon_colorNoHex color for the icon glyph, e.g. '#00ff88'. Defaults to text_color.
icon_scaleNoFraction of the canvas the glyph bounding box fills (0.1-1.0). Defaults to 1.0 — edge-to-edge, matching how Elgato's own icons fill the touchstrip slot. Reduce to ~0.75-0.85 for keypad buttons that also have a bottom title so the glyph doesn't touch the label.
shapeNoOutput canvas. 'button' (default) is 72x72 — keypad keys and encoder dial faces. 'touchstrip' is 200x100 — per-segment background above a Stream Deck + / + XL dial; pair with a button's strip_background_path on streamdeck_write_page.
transparent_bgNoGenerate an RGBA PNG with a transparent canvas instead of filling with bg_color. Use this for dial Icons that overlay a touchstrip background so the glyph composes naturally. Leave false (default) for keypad faces and touchstrip backgrounds.
textNoText for a centered text-only icon. Mutually exclusive with 'icon'. For icon buttons that need a label, use the button's 'title' field on streamdeck_write_page.
bg_colorNo
text_colorNo
font_sizeNo
filenameNo
iconsNoBatch generation: a list of icon spec objects, each carrying the same fields as a single-icon call (icon/text/icon_color/bg_color/icon_scale/shape/transparent_bg/text_color/font_size/filename). When this field is present, all other single-icon fields at the top level are ignored and the response shape becomes {"icons": [per-spec result]}. Use this for 30+ icon decks to avoid per-call round-trip cost. Accepts either a JSON array or a JSON-encoded string containing an array — some MCP clients stringify nested arrays in transit.

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description fully covers behavior: it generates PNGs, handles unknown MDI names with close-match suggestions, ignores top-level fields in batch mode, and describes the return shape (single dict or {"icons": [...]}). No contradictions with missing annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but well-structured, separating single and batch use cases. It is longer than ideal, but every sentence adds value, and the information is front-loaded. Minor redundancy could be trimmed.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (11 params, batch mode, no output schema), the description covers return formats, defaults, and error behavior for unknown names. It could explicitly mention that errors in batch are per-spec, but overall it is comprehensive enough for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds meaningful context beyond the schema: it explains that 'mdi:' is optional for 'icon', recommends 'icon_scale' values for buttons, describes 'transparent_bg' for dial overlays, and clarifies that 'icons' can accept a JSON-encoded string. While schema coverage is 64%, the description compensates with practical usage details.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly specifies the tool generates PNG icons with specific sizes (72x72 for buttons, 200x100 for touchstrip). It distinguishes between single icon and batch generation, and references sibling tool streamdeck_write_page for placing icons, making the purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to use batch mode ('30+ icons') to avoid round-trip timeouts, and when to use single mode. It clarifies that titles belong on streamdeck_write_page, not here, and that 'icon' and 'text' are mutually exclusive. This provides clear when-to-use and when-not-to-use guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

streamdeck_install_mcp_pluginA

Install the bundled streamdeck-mcp Stream Deck plugin into the user's Elgato Plugins directory. The plugin is a minimal shell that declares encoder support so that per-instance touchstrip icons and backgrounds written by streamdeck_write_page survive an Elgato app restart. Idempotent — returns installed=false when already present unless force=true. streamdeck_write_page also auto-installs this plugin when an encoder button targets it, so most callers do not need to invoke this directly.

ParametersJSON Schema
NameRequiredDescriptionDefault
forceNoReinstall the plugin even if it already exists. Useful after upgrading streamdeck-mcp.

TDQS

A4.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Describes idempotency (returns installed=false unless force=true) and the plugin's purpose (encoder support for touchstrip persistence). With no annotations, the description covers key behavioral aspects, though missing error handling details.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Four concise sentences: action, rationale, behavior, usage note. No fluff, each sentence adds essential information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple install tool with one optional parameter and no output schema, the description is complete. Covers purpose, idempotency, force usage, and alternative auto-install mechanism.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The only parameter 'force' is well-described in both schema (100% coverage) and description. Description adds context: 'Reinstall even if it already exists. Useful after upgrading streamdeck-mcp.' This adds value beyond schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description specifies the action (install), the target (bundled streamdeck-mcp plugin into Elgato Plugins directory), and the reason (encoder support for persistence). It distinguishes from siblings by noting that streamdeck_write_page auto-installs, so most callers don't need this tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states when to use (force=true for reinstallation after upgrade) and when not to use (most callers don't need it because auto-install happens). Provides clear context for the tool's role.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

streamdeck_read_pageB

Read a profile page by profile name or ID and page index or directory ID.

ParametersJSON Schema
NameRequiredDescriptionDefault
profile_nameNoExact profile name as shown in the Elgato app.
profile_idNoDirectory-based profile ID, usually the .sdProfile folder name without the suffix.
page_indexNoZero-based page index from streamdeck_read_profiles. Accepts int or a string form.
directory_idNoPage directory ID from streamdeck_read_profiles. This is the safest target for updates.

TDQS

B3.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description indicates the tool is a read-only operation ('Read'), which is a basic behavioral disclosure. Since no annotations are provided, the description carries full burden but does not elaborate on error behavior, idempotency, or consequences of providing multiple optional parameters.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence with no unnecessary words. It efficiently conveys the core purpose and parameter relationships.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has no output schema, so the description should explain what the tool returns. It does not. Additionally, with four optional parameters, there is no guidance on how they interact (e.g., whether profile_name or profile_id is required, or if both must be provided).

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, so the baseline is 3. The description adds minimal extra meaning by framing the parameters as alternatives, but the schema already provides clear descriptions for each parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Read' and the resource 'profile page'. However, it does not distinguish this tool from the sibling 'streamdeck_read_profiles', which reads all profiles. The description could explicitly mention that this tool targets a specific page, not the entire profile.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus its siblings like 'streamdeck_read_profiles' or 'streamdeck_write_page'. The description merely lists parameters without contextual advice.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

streamdeck_read_profilesA

List Stream Deck desktop profiles from the active ProfilesV3 or ProfilesV2 directory.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.6/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It only states the basic action (list from active directory) without detailing what happens if the directory is missing, whether the list is filtered, or if there are any side effects. This is insufficient for a read operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that clearly states the tool's purpose with no extraneous words. It is front-loaded and efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with no parameters and no output schema, the description is fairly complete: it specifies the resource and the source directory. However, it could mention the format of the returned list or any constraints, but overall it is adequate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are zero parameters, so the schema coverage is 100%. The description is not required to add parameter details. Baseline score of 4 is appropriate as per guidelines.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb 'List' and clearly identifies the resource as 'Stream Deck desktop profiles' from a specific directory. It differentiates well from sibling tools like streamdeck_create_action or streamdeck_read_page, which have different purposes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives. Siblings like streamdeck_read_page could read similar data, but the description does not clarify when to prefer read_profiles over read_page or other tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

streamdeck_restart_appA

Restart the macOS Stream Deck desktop app after profile changes.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description must cover behavioral traits. It mentions 'restart' implying the app will close and reopen, but does not disclose potential side effects like losing unsaved work in the app or requiring user permissions. This is insufficient for a destructive action.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single sentence conveys the entire purpose without redundancy. Every word earns its place, making it highly concise for a tool with no parameters.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given zero parameters and no output schema, the description is complete in scope. However, it omits potential side effects (e.g., interruption of ongoing tasks). Adequate but not thorough.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are no parameters, so the input schema provides full coverage. The description adds the context of 'after profile changes', which is a small extra semantic. Baseline of 4 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Restart' and the resource 'macOS Stream Deck desktop app', with a specific condition 'after profile changes'. This distinctly separates it from sibling tools like streamdeck_create_action or streamdeck_read_profiles.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage after profile changes, but does not explicitly state when not to use it (e.g., if app is not running) or provide alternatives. For a simple restart, this is acceptable but lacks thorough guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

streamdeck_write_pageA

Create a new page or replace/update an existing Stream Deck desktop page manifest. IMPORTANT: the Elgato desktop app overwrites profile manifests from its in-memory state on quit, so writes made while the app is running are lost. This tool refuses to write when the app is running unless auto_quit_app=True is passed. Call streamdeck_restart_app once your edits are complete to make the changes visible on the device.

ParametersJSON Schema
NameRequiredDescriptionDefault
profile_nameNo
profile_idNo
page_indexNoZero-based page index. Accepts int or string form.
directory_idNo
page_nameNoOptional page name stored in the page manifest.
buttonsNoButtons to write. Use streamdeck_create_action to build Open or script-backed actions. Accepts a JSON array or a JSON-encoded string — some MCP clients stringify nested arrays in transit.
clear_existingNoIf true, replace the page contents with the provided buttons. Defaults to true. Accepts bool or string form.
create_newNoCreate a new page instead of updating an existing one.
make_currentNoWhen true, make the page the active current page after writing.
auto_quit_appNoIf true and the Elgato Stream Deck desktop app is running, quit it (graceful AppleScript first, then killall) before writing. Required when the app is running or the write will raise an error. Defaults to false so callers must explicitly consent to quitting it.

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden and excels. It discloses key behaviors: the app's in-memory state overwriting on quit, the tool's refusal to write when the app is running without auto_quit_app=True, and the need to restart the app to make changes visible. This provides high transparency for a mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single paragraph of three sentences. It is front-loaded with the purpose, then delivers critical warnings and a procedural tip. Every sentence is informative with no redundancy or fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (10 params, no annotations, no output schema), the description covers the main purpose, behavioral warnings, and a cross-reference to sibling tools (streamdeck_create_action, streamdeck_restart_app). It does not explain return values (no output schema needed) and slightly lacks explicit sibling comparisons, but overall it equips an agent well.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 70%; the description adds value beyond the schema. It explains that streamdeck_create_action can build actions for the buttons parameter, notes that some MCP clients stringify nested arrays, and clarifies auto_quit_app's default false. The summary description does not detail every parameter but the added context compensates for the remaining 30% gap.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool creates a new page or replaces/updates an existing Stream Deck desktop page manifest. It uses specific verbs ('Create', 'replace/update') and identifies the resource ('Stream Deck desktop page manifest'). This distinguishes it from sibling tools like streamdeck_read_page (read-only) and streamdeck_restart_app (restart).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides critical usage guidance: it warns that the Elgato app overwrites manifests on quit, explains that writes are refused unless auto_quit_app=True when the app is running, and recommends calling streamdeck_restart_app after edits. It implies when to use this tool versus reading or restarting, though it does not explicitly list alternatives or when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 7 tool updatesv0.3.0
    • First observedstreamdeck_create_action
    • First observedstreamdeck_create_icon
    • First observedstreamdeck_install_mcp_plugin
    • First observedstreamdeck_read_page
    • First observedstreamdeck_read_profiles
    • First observedstreamdeck_restart_app
    • First observedstreamdeck_write_page

TDQS

A4/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: creating actions, creating icons, installing the plugin, reading/writing pages, reading profiles, and restarting the app. Overlap is minimal to none.

Naming Consistency5/5

All tools follow a consistent 'streamdeck_verb_noun' pattern (e.g., create_action, read_page, restart_app). The naming is predictable and uniform.

Tool Count5/5

With 7 tools, the server is well-scoped for the domain of Stream Deck profile management, covering essential operations without excess or omission.

Completeness4/5

The tool set covers core workflows (creating icons, actions, pages, profiles) but lacks delete operations for pages or actions, which is a minor gap.

Maintenance

ActivitySlowing
ResponsivenessUnresponsive

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/verygoodplugins/streamdeck-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server