-
Notifications
You must be signed in to change notification settings - Fork 0
MCP v0.5.2 Update #26
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
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,6 @@ docker run \ | |
--env APOLLO_GRAPH_REF="your graph here" \ | ||
--env APOLLO_KEY="your key here" \ | ||
--env MCP_ENABLE=1 \ | ||
--env MCP_UPLINK=1 \ | ||
--rm \ | ||
-p 4000:4000 \ | ||
-p 5050:5000 \ | ||
|
@@ -43,13 +42,11 @@ We open two ports in the above command: | |
The MCP Server included in this container is currently experimental and as such **should not be used in a production | ||
environment**. For more information see [here](https://www.apollographql.com/docs/graphos/resources/feature-launch-stages#experimental) | ||
|
||
If you wish to enable it for testing purposes then set the environment variables `MCP_ENABLE` and `MCP_UPLINK` when running the | ||
container. | ||
If you wish to enable it for testing purposes then set the environment variable `MCP_ENABLE` when running the container. | ||
|
||
```shell | ||
... | ||
--env MCP_ENABLE=1 \ | ||
--env MCP_UPLINK=1 \ | ||
... | ||
``` | ||
|
||
|
@@ -153,7 +150,7 @@ these are as follows: | |
| `APOLLO_KEY` | A valid API Key for Apollo Studio | | ||
| `APOLLO_GRAPH_REF` | The Graph Ref in Apollo Studio referenced by the Router and MCP Server | | ||
| `MCP_ALLOW_MUTATIONS` | Possible values: `none`, don't allow any mutations, `explicit` allow explicit mutations, but don't allow the LLM to build them, `all` Allow the LLM to build mutations | | ||
| `MCP_COLLECTION` | The ID of an operation collection to use as the source for operations | | ||
| `MCP_COLLECTION` | The ID of an operation collection to use as the source for operations (requires `APOLLO_KEY`). | | ||
| `MCP_DISABLE_TYPE_DESCRIPTION` | Disable operation root field types in tool description | | ||
| `MCP_DISABLE_SCHEMA_DESCRIPTION` | Disable schema type definitions referenced by all fields returned by the operation in the tool description | | ||
| `MCP_ENABLE` | Enable the MCP Server | | ||
|
@@ -162,4 +159,4 @@ these are as follows: | |
| `MCP_INTROSPECTION` | Enable the `--introspection` option for the MCP Server | | ||
| `MCP_LOG_LEVEL` | Change the level at which the MCP Server logs, possible values: `ERROR`, `WARN`, `INFO`, `DEBUG`, `TRACE` | | ||
| `MCP_SSE` | Use SSE as the transport protocol rather than streamable HTTP | | ||
| `MCP_UPLINK` | Enable use of Uplink to get the schema and persisted queries (Requires `APOLLO_KEY` and `APOLLO_GRAPH_REF`) | | ||
| `MCP_UPLINK_MANIFEST` | Enable use of Uplink to get the persisted queries (Requires `APOLLO_KEY` and `APOLLO_GRAPH_REF`) | | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The MCP server will default to the default MCP tools from operation collections unless this environment variable is set. |
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
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.
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.
In v0.5.2, if a schema isn't provided, it will get fetched from uplink by default.