-
Notifications
You must be signed in to change notification settings - Fork 39
prepare release v0.6.0 #194
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
✅ Docs preview readyThe preview is ready to be viewed. View the preview File Changes 0 new, 4 changed, 0 removed
Build ID: 8c2d4302dcb3fab2aae22500 URL: https://www.apollographql.com/docs/deploy-preview/8c2d4302dcb3fab2aae22500 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Co-authored-by: Armando Locay <[email protected]>
I've rebased and updated the docs. |
```sh showLineNumbers=false | ||
rover dev --supergraph-config ./graphql/TheSpaceDevs/supergraph.yaml \ | ||
--mcp \ | ||
--mcp-operations ./graphql/TheSpaceDevs/operations | ||
--mcp-config <path to the preceding config> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same question as apollographql/rover#2665 (comment).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Answered that question. If that solution works with you then I'll update this PR to not have the --mcp
flag in this example.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The markdown in the deploy preview for the command reference is a bit off
Edit: Fixed now
[0.6.0] - 2025-07-14
❗ BREAKING ❗
Replace CLI flags with a configuration file - @nicholascioli PR #162
All command line arguments are now removed and replaced with equivalent configuration
options. The Apollo MCP server only accepts a single argument which is a path to a
configuration file. An empty file may be passed, as all options have sane defaults
that follow the previous argument defaults.
All options can be overridden by environment variables. They are of the following
form:
APOLLO_MCP_
__
marking nested options.E.g. The environment variable to change the config option
introspection.execute.enabled
would be
APOLLO_MCP_INTROSPECTION__EXECUTE__ENABLED
.Below is a valid configuration file with some options filled out:
🚀 Features
Add search tool - @pubmodmatt PR #171
A new experimental
search
tool has been added that allows the AI model to specify a set of terms to search for in the GraphQL schema. The top types matching that search are returned, as well as enough information to enable creation of GraphQL operations involving those types.