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.
npx agentmods add instructions/verygoodplugins/streamdeck-mcp/claude-mdgit clone --depth 1 https://github.com/verygoodplugins/streamdeck-mcpWhat 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.
| Model | Per session | Once 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 |
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.
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:namefor 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 instreamdeck_assets/) or freeform text, plusicon_color/bg_color.iconandtextare mutually exclusive; use the button'stitlefield onstreamdeck_write_pagefor labels so they don't collide with Elgato's title overlay.
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.
- 2d ago First seen · 93 lines · 826 tokens per session scan A 287c43791eb7
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.
Other instructions, from other repositories
core integrations.instructions.md
Instructions for home-assistant/core, covering file locations, general guidelines, entity platforms, integration quality scale and how rules apply.
HomeAssistant-Tapo-Control AGENTS.md
Instructions for JurajNyiri/HomeAssistant-Tapo-Control, covering agent instructions, required user agreement, repository rules and commits and prs.
HomeAssistant-Tapo-Control CLAUDE.md
Instructions for JurajNyiri/HomeAssistant-Tapo-Control: Follow AGENTS.md and CONTRIBUTING.md before working in this repository.
MCP-Nest CLAUDE.md
Instructions for rekog-labs/MCP-Nest, covering claude.md, what this repo is, packages, layout and commands.
agentic-tools AGENTS.md
Instructions for meta-quest/agentic-tools, covering agent guide — meta quest agentic tools, what this repo is, how skills work, shared references and skill index.
open-xiaoai-bridge AGENTS.md
Instructions for coderzc/open-xiaoai-bridge, covering agents.md, 系统架构, 项目结构, 核心组件 and mainapp (core/app.py).