Technical & DevelopmentIntermediate
apollo-mcp-server
Connect AI agents to GraphQL APIs through the Model Context Protocol
Developer Setup
Setup & Installation
bash
npx skills add https://github.com/apollographql/skills --skill apollo-mcp-servernpx skills add https://github.com/apollographql/skills --skill apollo-mcp-serverOr paste this URL into your assistant to install:
Overview
What This Skill Does
Connect AI agents to GraphQL APIs through the Model Context Protocol
Application
When to use this Skill
- Integrating apollo mcp server into your development workflow.
- Following best practices for connect ai agents to graphql apis through the model context protocol.
- Automating repetitive tasks with AI-assisted tooling.
- Building production-grade applications with proper standards.
- Debugging and troubleshooting common implementation issues.
Documentation
Show Skills.md file
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:
# config.yaml
transport:
type: streamable_http
schema:
source: local
path: ./schema.graphql
operations:
source: local
paths:
- ./operations/
introspection:
introspect:
enabled: true
search:
enabled: true
validate:
enabled: true
execute:
enabled: true
Lines 1 - 41 of 293
Recommendations