hotwired-mcp

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.

Category
Visit Server

README

hotwired-mcp

Hotwired

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

  1. Hotwired Desktop App runs locally and creates a Unix socket at ~/.hotwired/hotwired.sock
  2. AI agents (Claude Code, Gemini, etc.) run hotwired-mcp as their MCP server
  3. hotwired-mcp communicates with the desktop app via the local Unix socket
  4. 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

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.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured