package mcp import "context" // Transport defines the interface for MCP server transports. type Transport interface { // Run starts the transport and blocks until the context is cancelled // or an error occurs. Run(ctx context.Context) error }