Skip to content

v0.3.6

Choose a tag to compare

@eastlondoner eastlondoner released this 15 Jan 02:52
· 18 commits to main since this release
d86df56

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)