streamdeck-mcp
Provides integration to control Elgato Stream Deck devices, including profile management, button creation with high-quality icons (SVG rendered at 144×144), and live dashboard daemon for monitoring.
Provides integration to extract Figma file links for task context aggregation, enabling retrieval of design files associated with tasks.
Provides integration to extract GitHub pull request links for task context aggregation, enabling retrieval of PR details associated with tasks.
Provides integration to search Notion and extract document links for task context aggregation, allowing retrieval of relevant Notion pages.
Provides integration to read Slack threads and extract URLs for task context aggregation, enabling retrieval of Slack conversations linked to tasks.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@streamdeck-mcpList my Stream Deck profiles"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
streamdeck-mcp
The Stream Deck MCP server that finally treats your developer workflow seriously.
Control your Elgato Stream Deck from Claude Code with high-quality icons, full profile management, and task context aggregation from Slack, Notion, and GitHub.
Why this over other Stream Deck MCPs?
Icons that don't look like programmer art — SVG rendered at 144×144 retina with Lucide icons, macOS app icon extraction, gradients, and badges. No more Pillow text on solid colors.
Task context aggregation — One command pulls your current task's Slack thread, Notion doc, GitHub PR, and Figma files into a single folder on your Stream Deck. No more hunting across five tools.
Folder-based navigation — Sub-pages you can actually create programmatically, with a working
/taskskill that handles the whole flow.Claude Code native — Built as a first-class MCP server, not a port of someone's USB control library.
Related MCP server: streamdeck-mcp
Install
npm install -g streamdeck-mcpOr clone and build:
git clone https://github.com/jxxh204/streamdeck-mcp.git
cd streamdeck-mcp
npm install
npm run buildConfigure
Add to your project's .mcp.json (or Claude Code settings):
{
"mcpServers": {
"streamdeck": {
"command": "streamdeck-mcp"
}
}
}If you installed from source, point to the built file instead:
{
"mcpServers": {
"streamdeck": {
"command": "node",
"args": ["/path/to/streamdeck-mcp/dist/index.js"]
}
}
}Quick start
After restarting Claude Code, try these in a conversation:
List my Stream Deck profilesCreate a 144x144 icon with the git-branch Lucide icon on a purple gradient,
text "main", and save it as branch-iconExtract the Cursor app icon and make it a Stream Deck buttonMCP tools
Tool | Description |
| List all profiles with pages and metadata |
| Read page details with button layout |
| Create or update pages with buttons |
| Generate 144×144 PNG icons (Lucide, app icons, gradients, badges, emoji) |
| Create shell script actions for buttons |
| Restart Stream Deck to apply changes |
| List built-in Lucide icon names |
| Create, rename, delete, or duplicate profiles |
| Delete a page from a profile |
| Start/stop a live dashboard daemon |
Icon examples
// Lucide icon with gradient background
{ lucide: "terminal", text: "Claude",
bg_color: "linear-gradient(#D97706, #B45309)" }
// macOS app icon extraction (uses sips under the hood)
{ app_icon: "Docker", subtitle: "Docker",
bg_color: "linear-gradient(#2496ED, #1D7AC4)" }
// Notification badge
{ lucide: "eye", text: "Reviews",
badge: "5", badge_color: "#9333EA" }
// Text with custom font size
{ text: "Push", bg_color: "#F05032", font_size: 24 }
// Emoji
{ emoji: "🚀", text: "Deploy",
bg_color: "linear-gradient(#16A34A, #15803D)" }/task skill — the killer feature
Claude Code slash command that aggregates your current task's context and sets up a Stream Deck folder.
Install
mkdir -p ~/.claude/commands
cp node_modules/streamdeck-mcp/commands/task.md ~/.claude/commands/Or if installed from source:
cp commands/task.md ~/.claude/commands/Usage
# Search Notion → extract PR/Slack/Figma links automatically
/task PROJ-123
# Read Slack thread → extract all URLs (Notion, GitHub, Figma, Sheets)
/task https://slack.com/archives/...
# Create a plain task folder
/task PR review cleanup
# Auto-detect from current Git branch
/task
# Clear slot 3
/task clear 3The skill supports up to 7 task folders (Row 1 + Row 2) and row-based issue layout for folders containing multiple related issues.
Requirements
Node.js 18 or newer
macOS — the ProfilesV3 path, app icon extraction (
sips), andElgato Stream Deck.appcontrol are all macOS-specificElgato Stream Deck with the desktop app installed
Windows and Linux support is planned but not yet implemented.
Architecture
src/
├── index.ts # MCP server entry
├── core/
│ ├── profile-manager.ts # ProfilesV3 manifest read/write
│ └── icon-renderer.ts # SVG → PNG pipeline (@resvg/resvg-js)
└── live/ # Optional background daemon
├── standalone.ts
└── sources/ # Claude Monitor, Git, processes, GitHub PRsKnown limitations
Folder creation — Stream Deck folders (child profiles) cannot be created purely from manifest files. The Elgato app validates folder references against its internal state. Workaround: create empty folders in the app UI once, then use
/taskto fill them.Live dashboard restart flicker — Applying live updates requires restarting the Stream Deck app, which causes a brief blackout. A native Elgato SDK plugin (Phase 5) would eliminate this.
License
MIT © jxxh204
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/jxxh204/streamdeck-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server