-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathserver.json
More file actions
71 lines (71 loc) · 2.21 KB
/
server.json
File metadata and controls
71 lines (71 loc) · 2.21 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.apollographql/apollo-mcp-server",
"title": "Apollo MCP Server",
"description": "MCP server that exposes GraphQL operations as tools for AI models.",
"websiteUrl": "https://www.apollographql.com/docs/apollo-mcp-server/",
"repository": {
"url": "https://github.com/apollographql/apollo-mcp-server",
"source": "github"
},
"version": "1.11.0",
"packages": [
{
"registryType": "oci",
"identifier": "ghcr.io/apollographql/apollo-mcp-server:v1.11.0",
"transport": {
"type": "stdio"
},
"runtimeArguments": [
{
"type": "named",
"name": "--mount",
"description": "Mount your config file into the container",
"value": "type=bind,src={config_path},dst=/config.yaml,readonly",
"isRequired": true,
"variables": {
"config_path": {
"description": "Path to your Apollo MCP Server configuration file on the host",
"format": "filepath",
"isRequired": true
}
}
},
{
"type": "named",
"name": "--mount",
"description": "Mount your project data directory into the container (for local schema and operations)",
"value": "type=bind,src={data_path},dst=/data",
"isRequired": false,
"variables": {
"data_path": {
"description": "Path to your project directory containing schema and operation files",
"format": "filepath",
"isRequired": true
}
}
},
{
"type": "named",
"name": "-p",
"description": "Expose the HTTP Streamable transport port",
"value": "8000:8000",
"isRequired": false
}
],
"packageArguments": [
{
"type": "positional",
"value": "/config.yaml"
}
]
}
],
"icons": [
{
"src": "https://raw.githubusercontent.com/apollographql/apollo-client-devtools/main/assets/apollo-wordmark.svg",
"mimeType": "image/svg+xml",
"sizes": ["any"]
}
]
}