You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-6Lines changed: 3 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,6 @@ docker run \
28
28
--env APOLLO_GRAPH_REF="your graph here" \
29
29
--env APOLLO_KEY="your key here" \
30
30
--env MCP_ENABLE=1 \
31
-
--env MCP_UPLINK=1 \
32
31
--rm \
33
32
-p 4000:4000 \
34
33
-p 5050:5000 \
@@ -43,13 +42,11 @@ We open two ports in the above command:
43
42
The MCP Server included in this container is currently experimental and as such **should not be used in a production
44
43
environment**. For more information see [here](https://www.apollographql.com/docs/graphos/resources/feature-launch-stages#experimental)
45
44
46
-
If you wish to enable it for testing purposes then set the environment variables `MCP_ENABLE` and `MCP_UPLINK` when running the
47
-
container.
45
+
If you wish to enable it for testing purposes then set the environment variable `MCP_ENABLE` when running the container.
48
46
49
47
```shell
50
48
...
51
49
--env MCP_ENABLE=1 \
52
-
--env MCP_UPLINK=1 \
53
50
...
54
51
```
55
52
@@ -153,7 +150,7 @@ these are as follows:
153
150
|`APOLLO_KEY`| A valid API Key for Apollo Studio |
154
151
|`APOLLO_GRAPH_REF`| The Graph Ref in Apollo Studio referenced by the Router and MCP Server |
155
152
|`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 |
156
-
|`MCP_COLLECTION`| The ID of an operation collection to use as the sourcefor operations |
153
+
|`MCP_COLLECTION`| The ID of an operation collection to use as the sourcefor operations (requires `APOLLO_KEY`).|
157
154
|`MCP_DISABLE_TYPE_DESCRIPTION`| Disable operation root field types in tool description |
158
155
|`MCP_DISABLE_SCHEMA_DESCRIPTION`| Disable schema type definitions referenced by all fields returned by the operation in the tool description |
159
156
|`MCP_ENABLE`| Enable the MCP Server |
@@ -162,4 +159,4 @@ these are as follows:
162
159
|`MCP_INTROSPECTION`| Enable the `--introspection` option for the MCP Server |
163
160
|`MCP_LOG_LEVEL`| Change the level at which the MCP Server logs, possible values: `ERROR`, `WARN`, `INFO`, `DEBUG`, `TRACE`|
164
161
|`MCP_SSE`| Use SSE as the transport protocol rather than streamable HTTP |
165
-
|`MCP_UPLINK`| Enable use of Uplink to get the schema and persisted queries (Requires `APOLLO_KEY` and `APOLLO_GRAPH_REF`) |
162
+
|`MCP_UPLINK_MANIFEST`| Enable use of Uplink to get the persisted queries (Requires `APOLLO_KEY` and `APOLLO_GRAPH_REF`) |
0 commit comments