streamdeck-mcp CLAUDE.md

This MCP server connects an AI assistant directly to Elgato Stream Deck button panels over USB, without using Elgato's desktop software.

In plain words
What is it for?
It helps connect to a Stream Deck, manage button pages, assign images and actions, and test the server even when no device is attached.
Why use it?
It provides the project's setup, run, testing, and code-structure instructions needed to control the device reliably.

Instructions file

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/verygoodplugins/streamdeck-mcp/claude-md
Clone the repo
git clone --depth 1 https://github.com/verygoodplugins/streamdeck-mcp
Per session 826 This file is loaded in full into every session.
When invoked 826 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00826 $0.00826
Opus 5 $0.00413 $0.00413
Sonnet 5 $0.00165 $0.00165
Haiku 4.5 $0.00083 $0.00083

Measured 2d ago against content hash 287c43791eb7, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

streamdeck-mcp CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

CLAUDE.md · 93 lines

How it starts

The opening of the file, as written. The whole thing — 93 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Overview

MCP server providing direct USB control of Elgato Stream Deck devices. Bypasses Elgato software entirely using python-elgato-streamdeck.

Development Commands

# Setup
uv venv && uv pip install -e ".[dev]"

# Run server (for Claude Desktop)
uv run server.py

# Lint
uv run ruff check .
uv run ruff check --fix .

# Format
uv run ruff format .

# Run tests (no hardware required)
uv run pytest tests/ -v

# Test without deck (fails gracefully if no hardware)
python -c "from server import state; print(state.get_deck_info())"

Claude Desktop Config

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "streamdeck": {
      "command": "uv",
      "args": ["--directory", "/path/to/streamdeck-mcp", "run", "server.py"]
    }
  }
}

Architecture

Single-file server (server.py) using MCP's Server class with stdio transport.

server.py
├── StreamDeckState      # Connection, pages, buttons, callbacks
│   ├── connect()        # Find and open first USB deck
│   ├── set_button_*()   # Image/action configuration
│   ├── *_page()         # Page CRUD and switching
│   └── _key_callback()  # Physical button press handler
├── @server.list_tools() # Tool definitions
└── @server.call_tool()  # Tool handlers

State persistence: ~/.streamdeck-mcp/pages.json (appearance) and buttons.json (actions).

Key Concepts

  • Button indexing: 0-based, left-to-right, top-to-bottom. 5x3 deck = keys 0-14.
Stream Deck Original (15 keys):
┌────┬────┬────┬────┬────┐
│  0 │  1 │  2 │  3 │  4 │
├────┼────┼────┼────┼────┤
│  5 │  6 │  7 │  8 │  9 │
├────┼────┼────┼────┼────┤
│ 10 │ 11 │ 12 │ 13 │ 14 │
└────┴────┴────┴────┴────┘
  • Pages: Named profiles. "main" is default and undeletable.
  • Actions: page:name for page switching, or shell commands (requires running server).
  • Image generation: Pillow renders button images. Accepts an MDI icon name (e.g. mdi:cpu-64-bit — ~7400 glyphs bundled in streamdeck_assets/) or freeform text, plus icon_color / bg_color. icon and text are mutually exclusive; use the button's title field on streamdeck_write_page for labels so they don't collide with Elgato's title overlay.

Read the full file on GitHub · 93 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 93 lines · 826 tokens per session scan A 287c43791eb7

Subscribe to this mod's changes

streamdeck-mcp CLAUDE.md is an instructions file published in the GitHub repository verygoodplugins/streamdeck-mcp (40 stars, last pushed 20d ago), licensed MIT. It adds 826 tokens to every session, about $0.0041 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.