mix taskweft.mcp (taskweft_mcp v0.2.0-dev.0)

Copy Markdown View Source

Run the Taskweft MCP server.

mix taskweft.mcp                         # stdio (default)
mix taskweft.mcp --http                  # Streamable HTTP on 127.0.0.1:51737
mix taskweft.mcp --http --port 51737     # custom port
mix taskweft.mcp --http --host 0.0.0.0   # bind all interfaces

HTTP mode exposes the MCP Streamable HTTP transport: POST any path for JSON-RPC requests, GET with Accept: text/event-stream (or /sse, /mcp/v1/sse) for the streamed response channel.

Wire stdio mode into Claude Code by adding to your MCP config:

{
  "mcpServers": {
    "taskweft": {
      "command": "mix",
      "args": ["taskweft.mcp"],
      "cwd": "/home/ernest.lee/multiplayer-fabric-taskweft"
    }
  }
}