We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 461088e commit a941128Copy full SHA for a941128
crates/apollo-mcp-server/src/server.rs
@@ -72,10 +72,12 @@ pub enum Transport {
72
port: u16,
73
74
/// Flag indicating whether to spin up a proxy server
75
+ /// [default: false]
76
#[serde(default = "Transport::default_proxy")]
77
proxy: bool,
78
- /// Proxy server endpoint
79
+ /// Proxy server endpoint to connect to if proxy is enabled
80
+ /// [default: http://<address>:<port>/mcp]
81
#[serde(default = "Transport::default_proxy_endpoint")]
82
proxy_endpoint: String,
83
},
0 commit comments