|
I need to connect to my MCP server over HTTP instead of stdio. Does Relay support this? |
Answered by
tamish560
Jul 10, 2026
Replies: 1 comment
|
Yes. Relay supports both stdio (default) and HTTP. To use HTTP: relay start --http --addr :8080Then point your MCP client at stdio is the default because most clients like Claude Desktop expect it. HTTP is useful when you want to run Relay as a service or connect from a remote machine. |
0 replies
Answer selected by
tamish560
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes. Relay supports both stdio (default) and HTTP.
To use HTTP:
Then point your MCP client at
http://localhost:8080/mcp. That's it.stdio is the default because most clients like Claude Desktop expect it. HTTP is useful when you want to run Relay as a service or connect from a remote machine.