apollo-mcp-server
Installation
Summary
Connect AI agents to GraphQL APIs through the Model Context Protocol with built-in introspection and operation tools.
- Exposes GraphQL operations as MCP tools; supports three operation sources: local files, GraphOS Studio collections, and persisted query manifests
- Provides four introspection tools (introspect, search, validate, execute) for schema exploration and ad-hoc query testing; minification mode reduces token usage with compact notation
- Configurable authentication via static headers, dynamic header forwarding, and OAuth; mutation control via explicit confirmation or blocking modes for safety in shared environments
- Works with Claude Desktop, Claude Code, and Cursor; supports both streamable HTTP (recommended for remote deployments) and stdio transports
SKILL.md
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
# 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:
Related skills