v0.3.6
What's New
Custom Headers for HTTP MCP Servers
You can now specify custom headers when connecting to HTTP MCP servers via the add_server tool. This enables authentication with servers that require Authorization headers or other custom headers.
Example usage:
add_server(
name: "my-server",
url: "http://localhost:3001/mcp",
headers: {
"Authorization": "Bearer your-token",
"X-Custom-Header": "value"
}
)Headers are preserved during automatic reconnection attempts.
Full Changelog
- feat: add custom headers support for HTTP MCP servers (#2)