File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed
crates/apollo-mcp-server/src Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -165,7 +165,9 @@ mod test {
165
165
},
166
166
),
167
167
graphos: GraphOSConfig {
168
- apollo_key: None,
168
+ apollo_key: Some(
169
+ SecretBox<str>([REDACTED]),
170
+ ),
169
171
apollo_graph_ref: None,
170
172
apollo_registry_url: None,
171
173
apollo_uplink_endpoints: [
@@ -251,6 +253,10 @@ mod test {
251
253
},
252
254
schema: Uplink,
253
255
transport: Stdio,
256
+ proxy: ProxyConfig {
257
+ enabled: false,
258
+ url: None,
259
+ },
254
260
}
255
261
"# ) ;
256
262
Ok ( ( ) )
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ operations:
54
54
All fields are optional.
55
55
56
56
| Option | Type | Default | Description |
57
- | :--------------- | :-------------------- | :----------------------- | :------------------------------------------------------------ |
57
+ |:-----------------| :---------------------- | :----------------------- |:-------------------------------------------------------------- |
58
58
| ` custom_scalars` | `FilePath` | | Path to a custom scalar map |
59
59
| `endpoint` | `URL` | `http://localhost:4000/` | The target GraphQL endpoint |
60
60
| `graphos` | `GraphOS` | | Apollo-specific credential overrides |
@@ -66,6 +66,7 @@ All fields are optional.
66
66
| `overrides` | `Overrides` | | Overrides for server behavior |
67
67
| `schema` | `SchemaSource` | | Schema configuration |
68
68
| `transport` | `Transport` | | The type of server transport to use |
69
+ | `proxy` | `Proxy` | | Proxy configuration |
69
70
70
71
# ## GraphOS
71
72
@@ -224,6 +225,14 @@ transport:
224
225
- mcp
225
226
- profile
226
227
` ` `
228
+ ### Proxy
229
+
230
+ These fields are under the top-level ` proxy` key.
231
+
232
+ | Option | Type | Default | Description |
233
+ |:------------------| :---------------------------------- |:--------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------|
234
+ | `enabled` | `bool` | `false` | Flag indicating whether to enable or disable the proxy client |
235
+ | `url` | `bool` | `http://<transport.address>:<transport.port>/mcp` | Where to the proxy client routes requests to |
227
236
228
237
# # Run a local graph with MCP server using `rover dev`
229
238
You can’t perform that action at this time.
0 commit comments