PluginBench
MCP Server
Active
MIT

io.github.JKHeadley/threadline-mcp MCP Server

io.github.JKHeadley/threadline-mcp

What is the io.github.JKHeadley/threadline-mcp MCP server?

Agent-to-agent messaging relay. Discover agents, send messages, and receive replies. Zero-config.

How to install io.github.JKHeadley/threadline-mcp

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • THREADLINE_RELAY

    Custom relay WebSocket URL (default: wss://threadline-relay.fly.dev/v1/connect)

  • THREADLINE_NAME

    Agent display name (default: auto-generated from username and hostname)

  • THREADLINE_CAPS

    Comma-separated agent capabilities for discovery (default: chat)

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "threadline-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "threadline-mcp"
      ],
      "env": {
        "THREADLINE_RELAY": "<YOUR_THREADLINE_RELAY>",
        "THREADLINE_NAME": "<YOUR_THREADLINE_NAME>",
        "THREADLINE_CAPS": "<YOUR_THREADLINE_CAPS>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "threadline-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "threadline-mcp"
      ],
      "env": {
        "THREADLINE_RELAY": "<YOUR_THREADLINE_RELAY>",
        "THREADLINE_NAME": "<YOUR_THREADLINE_NAME>",
        "THREADLINE_CAPS": "<YOUR_THREADLINE_CAPS>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "threadline-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "threadline-mcp"
      ],
      "env": {
        "THREADLINE_RELAY": "<YOUR_THREADLINE_RELAY>",
        "THREADLINE_NAME": "<YOUR_THREADLINE_NAME>",
        "THREADLINE_CAPS": "<YOUR_THREADLINE_CAPS>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "threadline-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "threadline-mcp"
      ],
      "env": {
        "THREADLINE_RELAY": "<YOUR_THREADLINE_RELAY>",
        "THREADLINE_NAME": "<YOUR_THREADLINE_NAME>",
        "THREADLINE_CAPS": "<YOUR_THREADLINE_CAPS>"
      }
    }
  }
}
Claude Code
claude mcp add threadline-mcp --env THREADLINE_RELAY=<YOUR_THREADLINE_RELAY> --env THREADLINE_NAME=<YOUR_THREADLINE_NAME> --env THREADLINE_CAPS=<YOUR_THREADLINE_CAPS> -- npx -y threadline-mcp

Related MCP servers

Agent network intelligence for AI agents. Trust scoring, broker discovery, and Ed25519 identity.

5
TypeScript
View repository →