Agent skill · Backend & API

apollo-mcp-server

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.

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill apollo-mcp-server --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Version: 1.0
Declared author: apollographql
Allowed tools: Bash(rover:*)Bash(npx:*)ReadWriteEditGlobGrep
Requires: Requires rover CLI v0.37+, Node.js v18+. Works with Claude Code, Claude Desktop, Cursor.
Path: skills/api/apollo-mcp-server/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the 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 ```bash # Using npm npm install -g @apollo/mcp-server # Or run directly with npx npx @apollo/mcp-server ``` ### Step 2: Configure Create `mcp.yaml` in your project root: ```yaml # mcp.yaml endpoint: https://api.example.com/graphql schema: type: local path: ./schema.graphql operations: type: local paths: - ./operations/**/*.graphql introspection: enabled: true ``` ### Step 3: Connect Add to your MCP client configuration: **Claude Desktop (`claude_desktop_config.json`):** ```json { "mcpServers": { "graphql-api": { "command": "npx", "args": ["@apollo/mcp-server", "--config", "./mcp.yaml"] } } } ``` **Claude Code (`.mcp.json`):** ```json { "mcpServers": { "graphql-api": { "command": "npx", "args": ["@apollo/mcp-server", "--config", "./mcp.yaml"] } } } ``` ## Built-in Tools Apollo MCP Server provides four introspection tools: | Tool | Purpose | When to Use | |------|---------|-------------| | `introspect` | Explore schema types in detail | Need type definitions, fields, relationships |

What's inside
Steps it walks through
  1. Quick Start
  2. Step 1: Install
  3. Step 2: Configure
  4. Step 3: Connect
  5. Built-in Tools
  6. Defining Custom Tools
  7. 1. Operation Files (Recommended)
  8. 2. Operation Collections
  9. 3. Persisted Queries
  10. Reference Files
  11. Key Rules
  12. Security
  13. Authentication
  14. Token Optimization
Ships with 1 file
  • metadata.json
Commands it runs
Using npm
npm install -g @apollo/mcp-server
Or run directly with npx
npx @apollo/mcp-server
More from claude-skill-registry
All skills →
About this skill
What does the apollo-mcp-server skill do?

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.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill apollo-mcp-server --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going