Upgrade apollo-mcp-server to v0.7.3#10
Merged
Merged
Conversation
|
🔄 GraphQL Schema Updated The GraphQL schema has been automatically updated from HackerOne's latest schema. Please review the changes before merging. |
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR upgrades the apollo-mcp-server from v0.3.0 to v0.7.3, introducing new configuration options and fixing an issue with operations that have no input arguments.
- Upgrades apollo-mcp-server to v0.7.3 and switches from command-line arguments to YAML configuration
- Renames
ALLOW_MUTATIONStoMUTATION_MODEfor consistency with the new server version - Adds new environment variables
DISABLE_TYPE_DESCRIPTIONandDISABLE_SCHEMA_DESCRIPTIONfor customizing tool descriptions
Reviewed Changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| graphql/schema.graphql | Updates GraphQL schema with field changes and removal of INSIGHT_AGENT enum value |
| graphql/operations/GetHackerOneCurrentUser.graphql | Removes workaround for operations without input arguments (fixed in new server version) |
| entrypoint | Refactored to use YAML configuration with sed templating instead of command-line arguments |
| config.yaml | New YAML configuration template for apollo-mcp-server |
| README.md | Updated documentation to reflect new environment variables and MUTATION_MODE rename |
| Dockerfile | Updates server version and copies new config.yaml file |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
alexanderjeurissen
approved these changes
Aug 28, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Introduces new ENV vars:
DISABLE_TYPE_DESCRIPTION,DISABLE_SCHEMA_DESCRIPTION(see command reference for meaning).Renames existing
ALLOW_MUTATIONSvar toMUTATION_MODE.This also fixes the issue for operations without input arguments.
See apollo-mcp-server changelog for details. There should not be any changes to users of this library.