Skip to content

Commit 43c2bac

Browse files
authored
Add Apollo MCP Server to mcp-registry (#60)
* add apollo mcp server * parameters should only include properties that are referenced in environment variables
1 parent 8368098 commit 43c2bac

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

servers/apollo-mcp-server/server.yaml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: apollo-mcp-server
2+
image: ghcr.io/apollographql/apollo-mcp-server
3+
type: server
4+
meta:
5+
category: ai
6+
tags:
7+
- ai
8+
about:
9+
title: Apollo MCP Server
10+
description: Enable graph-based API orchestration with AI
11+
icon: https://www.apollographql.com/favicon/android-icon-192x192.png
12+
source:
13+
project: https://github.com/apollographql/apollo-mcp-server
14+
config:
15+
description: Configure the connection to Apollo MCP Server
16+
env:
17+
- name: APOLLO_KEY
18+
example: service:mygraph:1234567890
19+
value: "{{apollo-mcp-server.apollo-key}}"
20+
- name: APOLLO_GRAPH_REF
21+
example: MyGraph@current
22+
value: "{{apollo-mcp-server.apollo-graph-ref}}"
23+
parameters:
24+
type: object
25+
properties:
26+
apollo-key:
27+
type: string
28+
apollo-graph-ref:
29+
type: string
30+
required:
31+
- apollo-key
32+
- apollo-graph-ref

0 commit comments

Comments
 (0)