-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp_config.yaml
More file actions
55 lines (50 loc) · 1.47 KB
/
mcp_config.yaml
File metadata and controls
55 lines (50 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# yaml-language-server: $schema=https://github.com/apollographql/apollo-mcp-server/releases/download/v0.6.0/config.schema.json
################################################################################
# Example MCP configuration
#
# Note: Refer to the official documentation for info on what should be present
# https://www.apollographql.com/docs/apollo-mcp-server/command-reference
################################################################################
# If you have custom scalars that you wish to use in your operations / schema, use the following
# configuration
#
# ```yaml
# custom_scalars: /config/custom_scalars.graphql
# ```
# Use uplink for operations
#
# Note: If you wish to use files inside the container instead, use the following configuration:
#
# ```yaml
# operations:
# source: local
# paths:
# - /config/operations
# ```
#
# Note: If you wish to use a persisted query manifest instead, use the following configuration:
#
# ```yaml
# operations:
# source: manifest
# path: /config/persisted_queries_manifest.json
# ```
operations:
source: uplink
# Use uplink for schema information
#
# Note: If you wish to use a file inside the container instead, use the following configuration:
#
# ```yaml
# schema:
# source: local
# path: /config/api_schema.graphql
# ```
schema:
source: uplink
# Configure the MCP server to listen for streamable HTTP messages on port 5000
# for all addresses
transport:
type: streamable_http
address: "0.0.0.0"
port: 5000