hotwired-mcp
MCP server for Hotwired multi-agent workflow orchestration, enabling AI agents to coordinate locally via Unix sockets with tools for protocol, messaging, and task management.
README
hotwired-mcp
MCP (Model Context Protocol) server for Hotwired multi-agent workflow orchestration.
Why Open Source?
This MCP server runs on your machine. We open source it so you can:
- Audit exactly what code runs on your machine
- Verify there are no external network calls
- Trust that there's no hidden behavior
- Build from source if you prefer
Hotwired.sh Architecture
Everything runs locally on your machine. There are no external service dependencies.
flowchart TB
subgraph agents["AI Coding Agents"]
claude["Claude Code"] ~~~ gemini["Gemini CLI"] ~~~ other["Other Agents"]
end
subgraph mcp["hotwired-mcp"]
tools["MCP Tools"] --> ipc["IPC Client"]
end
subgraph desktop["Hotwired Desktop App"]
socket["Unix Socket<br/>~/.hotwired/hotwired.sock"] <--> core["Hotwired Core"]
end
agents -->|"spawns"| mcp
ipc <-->|"local only"| socket
How it works
- Hotwired Desktop App runs locally and creates a Unix socket at
~/.hotwired/hotwired.sock - AI agents (Claude Code, Gemini, etc.) run
hotwired-mcpas their MCP server - hotwired-mcp communicates with the desktop app via the local Unix socket
- No external network calls - all communication stays on your machine
The only external connection the Hotwired Desktop App makes is for authentication. All workflow orchestration, message passing, and coordination happens entirely locally.
Installation
For Claude Code Users
Hotwired requires both the MCP server and the Claude Plugin for full functionality.
Step 1: Add the MCP server
claude mcp add hotwired -- npx @hotwired-sh/hotwired-mcp@latest
Step 2: Install the Claude Plugin
The plugin provides session hooks and slash commands that integrate Claude Code with Hotwired workflows:
claude plugin marketplace add hotwired-sh/claude-plugin
claude plugin install hotwired@hotwired-sh/claude-plugin
See the Hotwired Claude Plugin for more details.
For Other MCP-Compatible Agents
Add to your MCP configuration:
{
"mcpServers": {
"hotwired": {
"command": "npx",
"args": ["@hotwired-sh/hotwired-mcp@latest"]
}
}
}
Building from Source
If you prefer to audit and build the code yourself:
cargo install --git https://github.com/hotwired-sh/hotwired-mcp
Prerequisites
- Hotwired Desktop App - Must be running
- Zellij - Terminal multiplexer for session management
Available Tools
| Tool | Description |
|---|---|
get_protocol |
Fetch workflow protocol and role instructions |
get_run_status |
Check current run status |
report_status |
Update your working state |
send_message |
Send message to other participants |
request_input |
Ask human for input |
report_impediment |
Signal you're blocked |
handoff |
Hand work to another agent |
task_complete |
Mark a task as complete |
Security
Why Unix Sockets (Not HTTP/localhost)
We deliberately use Unix sockets instead of HTTP on localhost. This is a critical security design choice.
Many MCP tools have been vulnerable to DNS rebinding attacks and 0.0.0.0 bypass exploits because they expose HTTP servers on localhost. These vulnerabilities allow malicious websites to:
- Send requests to localhost services via DNS rebinding
- Bypass browser same-origin policy through the 0.0.0.0 loophole
- Achieve remote code execution with no user interaction
Unix sockets are immune to these attacks:
- ❌ No TCP/HTTP listener - browsers cannot connect
- ❌ No DNS rebinding possible - not a network protocol
- ❌ No 0.0.0.0 bypass - sockets are filesystem-based
- ✅ Protected by filesystem permissions
- ✅ Only local processes can connect
What This MCP Server Does NOT Do
- Does NOT open any network ports - no HTTP, no TCP, no localhost
- Does NOT make any external network requests
- Does NOT read or modify files outside its scope
- Connects only to the local Unix socket (
~/.hotwired/hotwired.sock) - Source code is fully auditable
Development
# Build
cargo build --release
# Test
cargo test
# Run locally
cargo run
License
MIT - See LICENSE
Learn More
Visit hotwired.sh for documentation, tutorials, and more information about multi-agent workflow orchestration.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。
