Guide for using Apollo MCP Server to connect AI agents with GraphQL APIs. Use this skill when: (1) setting up or configuring Apollo MCP Server, (2) defining MCP tools from GraphQL operations, (3) using introspection tools (introspect, search, validate, execute), (4)
Installs just this skill. Get the whole plugin for auto-invocation.
โก How it fires
How this skill gets triggered: by you, by Claude, or both.
Fires itselfClaude auto-loads it when your prompt matches the work.
You can call itInvoke it directly when you want it.
Slash command/apollo-mcp-server
๐๏ธ Context preview
The summary Claude sees to decide when to auto-load this skill.
Guide for using Apollo MCP Server to connect AI agents with GraphQL APIs. Use this skill when: (1) setting up or configuring Apollo MCP Server, (2) defining MCP tools from GraphQL operations, (3) using introspection tools (introspect, search, validate, execute), (4)
๐ Stats
Stars98
Forks11
LanguageShell
LicenseMIT
๐ฆ Ships with apollo-skills
</> SKILL.md
apollo-mcp-server.SKILL.md
---name: apollo-mcp-server
description: >
Guide for using Apollo MCP Server to connect AI agents with GraphQL APIs.
Use this skill when: (1) setting up or configuring Apollo MCP Server,
(2) defining MCP tools from GraphQL operations, (3) using introspection
tools (introspect, search, validate, execute), (4) troubleshooting
MCP server connectivity or tool execution issues.
license: MIT
compatibility: Works with Claude Code, Claude Desktop, Cursor.
metadata:
author: apollographql
version: "1.1.1"
allowed-tools: Bash(rover:*) Bash(npx:*) Read Write Edit Glob Grep
---# Apollo MCP Server Guide
Apollo MCP Server exposes GraphQL operations as MCP tools, enabling AI agents to interact with GraphQL APIs through the Model Context Protocol.
## Quick Start
### Step 1: Install
```bash
# Linux / MacOS
curl -sSL https://mcp.apollo.dev/download/nix/latest | sh
# Windows
iwr 'https://mcp.apollo.dev/download/win/latest' | iex
```
### Step 2: Configure
Create `config.yaml` in your project root:
The MCP endpoint is available at `http://127.0.0.1:8000/mcp` (streamable_http defaults: address `127.0.0.1`, port `8000`). The GraphQL endpoint defaults to `http://localhost:4000/` โ override with the `endpoint` key if your API runs elsewhere.