Skip to content

Commit f0ef95d

Browse files
authored
Merge pull request #92 from apollographql/fix-broken-links
docs: fix links in command reference documentation
2 parents 22854a4 + 1cc3e1f commit f0ef95d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

crates/apollo-mcp-server/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ async fn main() -> anyhow::Result<()> {
111111
Transport::Stdio
112112
};
113113

114-
// When using the Stdio transport, send output stderr since stdout is used for MCP messages
114+
// When using the Stdio transport, send output to stderr since stdout is used for MCP messages
115115
match transport {
116116
Transport::SSE { .. } => tracing_subscriber::fmt()
117117
.with_env_filter(EnvFilter::from_default_env().add_directive(args.log_level.into()))

docs/source/command-reference.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ apollo-mcp-server [OPTIONS] --directory <DIRECTORY>
6262
| :-------------------------------------------------- |:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
6363
| `-d, --directory <DIRECTORY>` | The working directory to use. Defaults the current working directory. |
6464
| `-s, --schema <SCHEMA>` | The path to the GraphQL API schema file. |
65-
| `-c, --custom-scalars-config <CUSTOM_SCALARS_CONFIG>` | The path to the GraphQL custom_scalars_config file. [Learn more](/apollo-mcp-server/guides/#custom-scalars). |
65+
| `-c, --custom-scalars-config <CUSTOM_SCALARS_CONFIG>` | The path to the GraphQL custom_scalars_config file. |
6666
| `-e, --endpoint <ENDPOINT>` | The GraphQL endpoint the server will invoke.<br />[default: `http://127.0.0.1:4000`] |
6767
| `--header <HEADERS>` | Headers to send to the endpoint. |
6868
| `--sse-port <SSE_PORT>` | Start the server using the SSE transport on the given port (default: 5000). |
6969
| `--sse-address <SSE_ADDRESS>` | The IP address to bind the SSE server to (default: 127.0.0.1). |
7070
| `-i, --introspection` | Expose the schema to the MCP client through `introspect` and `execute` tools. [Learn more](/apollo-mcp-server/guides/#from-schema-introspection). |
7171
| `-u, --uplink` | Enable use of uplink to get the schema and persisted queries (requires `APOLLO_KEY` and `APOLLO_GRAPH_REF`). [Learn more](/apollo-mcp-server/guides/#from-graphos-managed-persisted-queries). |
7272
| `-x, --explorer` | Expose a tool to open queries in Apollo Explorer (requires `APOLLO_KEY` and `APOLLO_GRAPH_REF`). |
73-
| `-o, --operations [<OPERATIONS>...]` | Operation files to expose as MCP tools. [Learn more](/apollo-mcp-server/guides/#from-operation-schema-files). |
73+
| `-o, --operations [<OPERATIONS>...]` | Operation files to expose as MCP tools. [Learn more](/apollo-mcp-server/guides/#from-operation-files). |
7474
| `--manifest <MANIFEST>` | The path to the persisted query manifest containing operations. |
7575
| `--disable-type-description` | Disable operation root field types in tool description. |
7676
| `--disable-schema-description` | Disable schema type definitions referenced by all fields returned by the operation in the tool description. |

0 commit comments

Comments
 (0)