[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-apollo-graphql-apollo-mcp-server":3,"mdc-t8yzfb-key":37,"related-org-apollo-graphql-apollo-mcp-server":2749,"related-repo-apollo-graphql-apollo-mcp-server":2912},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":28,"topics":29,"repo":32,"sourceUrl":35,"mdContent":36},"apollo-mcp-server","connect MCP agents to GraphQL APIs","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.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"apollo-graphql","Apollo GraphQL","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fapollo-graphql.png","apollographql",[13,17,18,21],{"name":14,"slug":15,"type":16},"GraphQL","graphql","tag",{"name":9,"slug":8,"type":16},{"name":19,"slug":20,"type":16},"MCP","mcp",{"name":22,"slug":23,"type":16},"API Development","api-development",97,"https:\u002F\u002Fgithub.com\u002Fapollographql\u002Fskills","2026-04-06T18:01:20.578589","MIT",11,[30,31,15],"agent-skills","apollo",{"repoUrl":25,"stars":24,"forks":28,"topics":33,"description":34},[30,31,15],"Apollo GraphQL Agent Skills","https:\u002F\u002Fgithub.com\u002Fapollographql\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Fapollo-mcp-server","---\nname: apollo-mcp-server\ndescription: >\n  Guide for using Apollo MCP Server to connect AI agents with GraphQL APIs.\n  Use this skill when: (1) setting up or configuring Apollo MCP Server,\n  (2) defining MCP tools from GraphQL operations, (3) using introspection\n  tools (introspect, search, validate, execute), (4) troubleshooting\n  MCP server connectivity or tool execution issues.\nlicense: MIT\ncompatibility: Works with Claude Code, Claude Desktop, Cursor.\nmetadata:\n  author: apollographql\n  version: \"1.1.1\"\nallowed-tools: Bash(rover:*) Bash(npx:*) Read Write Edit Glob Grep\n---\n\n# Apollo MCP Server Guide\n\nApollo MCP Server exposes GraphQL operations as MCP tools, enabling AI agents to interact with GraphQL APIs through the Model Context Protocol.\n\n## Quick Start\n\n### Step 1: Install\n\n```bash\n# Linux \u002F MacOS\ncurl -sSL https:\u002F\u002Fmcp.apollo.dev\u002Fdownload\u002Fnix\u002Flatest | sh\n\n# Windows\niwr 'https:\u002F\u002Fmcp.apollo.dev\u002Fdownload\u002Fwin\u002Flatest' | iex\n```\n\n### Step 2: Configure\n\nCreate `config.yaml` in your project root:\n\n```yaml\n# config.yaml\ntransport:\n  type: streamable_http\nschema:\n  source: local\n  path: .\u002Fschema.graphql\noperations:\n  source: local\n  paths:\n    - .\u002Foperations\u002F\nintrospection:\n  introspect:\n    enabled: true\n  search:\n    enabled: true\n  validate:\n    enabled: true\n  execute:\n    enabled: true\n```\n\nStart the server:\n```bash\napollo-mcp-server .\u002Fconfig.yaml\n```\n\nThe MCP endpoint is available at `http:\u002F\u002F127.0.0.1:8000\u002Fmcp` (streamable_http defaults: address `127.0.0.1`, port `8000`). The GraphQL endpoint defaults to `http:\u002F\u002Flocalhost:4000\u002F` — override with the `endpoint` key if your API runs elsewhere.\n\n### Step 3: Connect\n\nAdd to your MCP client configuration:\n\n**Streamable HTTP (recommended):**\n\nClaude Desktop (`claude_desktop_config.json`):\n```json\n{\n  \"mcpServers\": {\n    \"graphql-api\": {\n      \"command\": \"npx\",\n      \"args\": [\"mcp-remote\", \"http:\u002F\u002F127.0.0.1:8000\u002Fmcp\"]\n    }\n  }\n}\n```\n\nClaude Code:\n```bash\nclaude mcp add graphql-api -- npx mcp-remote http:\u002F\u002F127.0.0.1:8000\u002Fmcp\n```\n\n**Stdio (client launches the server directly):**\n\nClaude Desktop (`claude_desktop_config.json`) or Claude Code (`.mcp.json`):\n```json\n{\n  \"mcpServers\": {\n    \"graphql-api\": {\n      \"command\": \".\u002Fapollo-mcp-server\",\n      \"args\": [\".\u002Fconfig.yaml\"]\n    }\n  }\n}\n```\n\n## Built-in Tools\n\nApollo MCP Server provides four introspection tools:\n\n| Tool | Purpose | When to Use |\n|------|---------|-------------|\n| `introspect` | Explore schema types in detail | Need type definitions, fields, relationships |\n| `search` | Find types in schema | Looking for specific types or fields |\n| `validate` | Check operation validity | Before executing operations |\n| `execute` | Run ad-hoc GraphQL operations | Testing or one-off queries |\n\n## Defining Custom Tools\n\nMCP tools are created from GraphQL operations. Three methods:\n\n### 1. Operation Files (Recommended)\n\n```yaml\noperations:\n  source: local\n  paths:\n    - .\u002Foperations\u002F\n```\n\nEach file must contain exactly one operation. Each named operation becomes an MCP tool.\n\n```graphql\n# operations\u002FGetUser.graphql\nquery GetUser($id: ID!) {\n  user(id: $id) {\n    id\n    name\n    email\n  }\n}\n```\n\n```graphql\n# operations\u002FCreateUser.graphql\nmutation CreateUser($input: CreateUserInput!) {\n  createUser(input: $input) {\n    id\n    name\n  }\n}\n```\n\n### 2. Operation Collections\n\n```yaml\noperations:\n  source: collection\n  id: your-collection-id\n```\n\nUse GraphOS Studio to manage operations collaboratively.\n\n### 3. Persisted Queries\n\n```yaml\noperations:\n  source: manifest\n  path: .\u002Fpersisted-query-manifest.json\n```\n\nFor production environments with pre-approved operations.\n\n## Reference Files\n\nDetailed documentation for specific topics:\n\n- [Tools](references\u002Ftools.md) - Introspection tools and minify notation\n- [Configuration](references\u002Fconfiguration.md) - All configuration options\n- [Troubleshooting](references\u002Ftroubleshooting.md) - Common issues and solutions\n\n## Key Rules\n\n### Security\n\n- **Never expose sensitive operations** without authentication\n- Use `headers` configuration for API keys and tokens\n- Disable introspection tools in production (they are disabled by default)\n- Set `overrides.mutation_mode: explicit` to require confirmation for mutations\n\n### Authentication\n\n```yaml\n# Static header\nheaders:\n  Authorization: \"Bearer ${env.API_TOKEN}\"\n\n# Dynamic header forwarding\nforward_headers:\n  - x-forwarded-token\n\n# OAuth (streamable_http transport)\ntransport:\n  type: streamable_http\n  auth:\n    servers:\n      - https:\u002F\u002Fauth.example.com\u002F.well-known\u002Fopenid-configuration\n    audiences:\n      - https:\u002F\u002Fapi.example.com\n```\n\n### Token Optimization\n\nEnable minification to reduce token usage:\n\n```yaml\nintrospection:\n  introspect:\n    minify: true\n  search:\n    minify: true\n```\n\nMinified output uses compact notation:\n- **T** = type, **I** = input, **E** = enum\n- **s** = String, **i** = Int, **b** = Boolean, **f** = Float, **d** = ID\n- **!** = required, **[]** = list\n\n### Mutations\n\nControl mutation behavior via the `overrides` section:\n\n```yaml\noverrides:\n  mutation_mode: all       # Execute mutations directly\n  # mutation_mode: explicit  # Require explicit confirmation\n  # mutation_mode: none      # Block all mutations (default)\n```\n\n## Common Patterns\n\n### GraphOS Cloud Schema\n\n```yaml\n# schema.source defaults to uplink — can be omitted when graphos is configured\ngraphos:\n  apollo_key: ${env.APOLLO_KEY}\n  apollo_graph_ref: my-graph@production\n```\n\n### Local Development\n\n```yaml\ntransport:\n  type: streamable_http\nschema:\n  source: local\n  path: .\u002Fschema.graphql\nintrospection:\n  introspect:\n    enabled: true\n  search:\n    enabled: true\n  validate:\n    enabled: true\n  execute:\n    enabled: true\noverrides:\n  mutation_mode: all\n```\n\n### Production Setup\n\n```yaml\ntransport:\n  type: streamable_http\nendpoint: https:\u002F\u002Fapi.production.com\u002Fgraphql\noperations:\n  source: manifest\n  path: .\u002Fpersisted-query-manifest.json\ngraphos:\n  apollo_key: ${env.APOLLO_KEY}\n  apollo_graph_ref: ${env.APOLLO_GRAPH_REF}\nheaders:\n  Authorization: \"Bearer ${env.API_TOKEN}\"\nhealth_check:\n  enabled: true\n```\n\n### Docker\n\n```yaml\ntransport:\n  type: streamable_http\n  address: 0.0.0.0\n  port: 8000\nendpoint: ${env.GRAPHQL_ENDPOINT}\ngraphos:\n  apollo_key: ${env.APOLLO_KEY}\n  apollo_graph_ref: ${env.APOLLO_GRAPH_REF}\nhealth_check:\n  enabled: true\n```\n\n## Ground Rules\n\n- ALWAYS configure authentication before exposing to AI agents\n- ALWAYS use `mutation_mode: explicit` or `mutation_mode: none` in shared environments\n- NEVER expose introspection tools with write access to production data\n- PREFER operation files over ad-hoc execute for predictable behavior\n- PREFER streamable_http transport for remote and multi-client deployments\n- USE stdio only when the MCP client launches the server process directly\n- USE GraphOS Studio collections for team collaboration\n",{"data":38,"body":43},{"name":4,"description":6,"license":27,"compatibility":39,"metadata":40,"allowed-tools":42},"Works with Claude Code, Claude Desktop, Cursor.",{"author":11,"version":41},"1.1.1","Bash(rover:*) Bash(npx:*) Read Write Edit Glob Grep",{"type":44,"children":45},"root",[46,55,61,68,75,183,189,202,485,490,509,554,560,565,574,587,782,787,837,845,863,1020,1026,1031,1152,1158,1163,1169,1224,1229,1299,1358,1364,1415,1420,1426,1476,1481,1487,1492,1531,1537,1543,1587,1593,1787,1793,1798,1869,1874,1957,1963,1976,2032,2038,2044,2105,2111,2327,2333,2527,2533,2683,2689,2743],{"type":47,"tag":48,"props":49,"children":51},"element","h1",{"id":50},"apollo-mcp-server-guide",[52],{"type":53,"value":54},"text","Apollo MCP Server Guide",{"type":47,"tag":56,"props":57,"children":58},"p",{},[59],{"type":53,"value":60},"Apollo MCP Server exposes GraphQL operations as MCP tools, enabling AI agents to interact with GraphQL APIs through the Model Context Protocol.",{"type":47,"tag":62,"props":63,"children":65},"h2",{"id":64},"quick-start",[66],{"type":53,"value":67},"Quick Start",{"type":47,"tag":69,"props":70,"children":72},"h3",{"id":71},"step-1-install",[73],{"type":53,"value":74},"Step 1: Install",{"type":47,"tag":76,"props":77,"children":82},"pre",{"className":78,"code":79,"language":80,"meta":81,"style":81},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Linux \u002F MacOS\ncurl -sSL https:\u002F\u002Fmcp.apollo.dev\u002Fdownload\u002Fnix\u002Flatest | sh\n\n# Windows\niwr 'https:\u002F\u002Fmcp.apollo.dev\u002Fdownload\u002Fwin\u002Flatest' | iex\n","bash","",[83],{"type":47,"tag":84,"props":85,"children":86},"code",{"__ignoreMap":81},[87,99,131,141,150],{"type":47,"tag":88,"props":89,"children":92},"span",{"class":90,"line":91},"line",1,[93],{"type":47,"tag":88,"props":94,"children":96},{"style":95},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[97],{"type":53,"value":98},"# Linux \u002F MacOS\n",{"type":47,"tag":88,"props":100,"children":102},{"class":90,"line":101},2,[103,109,115,120,126],{"type":47,"tag":88,"props":104,"children":106},{"style":105},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[107],{"type":53,"value":108},"curl",{"type":47,"tag":88,"props":110,"children":112},{"style":111},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[113],{"type":53,"value":114}," -sSL",{"type":47,"tag":88,"props":116,"children":117},{"style":111},[118],{"type":53,"value":119}," https:\u002F\u002Fmcp.apollo.dev\u002Fdownload\u002Fnix\u002Flatest",{"type":47,"tag":88,"props":121,"children":123},{"style":122},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[124],{"type":53,"value":125}," |",{"type":47,"tag":88,"props":127,"children":128},{"style":105},[129],{"type":53,"value":130}," sh\n",{"type":47,"tag":88,"props":132,"children":134},{"class":90,"line":133},3,[135],{"type":47,"tag":88,"props":136,"children":138},{"emptyLinePlaceholder":137},true,[139],{"type":53,"value":140},"\n",{"type":47,"tag":88,"props":142,"children":144},{"class":90,"line":143},4,[145],{"type":47,"tag":88,"props":146,"children":147},{"style":95},[148],{"type":53,"value":149},"# Windows\n",{"type":47,"tag":88,"props":151,"children":153},{"class":90,"line":152},5,[154,159,164,169,174,178],{"type":47,"tag":88,"props":155,"children":156},{"style":105},[157],{"type":53,"value":158},"iwr",{"type":47,"tag":88,"props":160,"children":161},{"style":122},[162],{"type":53,"value":163}," '",{"type":47,"tag":88,"props":165,"children":166},{"style":111},[167],{"type":53,"value":168},"https:\u002F\u002Fmcp.apollo.dev\u002Fdownload\u002Fwin\u002Flatest",{"type":47,"tag":88,"props":170,"children":171},{"style":122},[172],{"type":53,"value":173},"'",{"type":47,"tag":88,"props":175,"children":176},{"style":122},[177],{"type":53,"value":125},{"type":47,"tag":88,"props":179,"children":180},{"style":105},[181],{"type":53,"value":182}," iex\n",{"type":47,"tag":69,"props":184,"children":186},{"id":185},"step-2-configure",[187],{"type":53,"value":188},"Step 2: Configure",{"type":47,"tag":56,"props":190,"children":191},{},[192,194,200],{"type":53,"value":193},"Create ",{"type":47,"tag":84,"props":195,"children":197},{"className":196},[],[198],{"type":53,"value":199},"config.yaml",{"type":53,"value":201}," in your project root:",{"type":47,"tag":76,"props":203,"children":207},{"className":204,"code":205,"language":206,"meta":81,"style":81},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# config.yaml\ntransport:\n  type: streamable_http\nschema:\n  source: local\n  path: .\u002Fschema.graphql\noperations:\n  source: local\n  paths:\n    - .\u002Foperations\u002F\nintrospection:\n  introspect:\n    enabled: true\n  search:\n    enabled: true\n  validate:\n    enabled: true\n  execute:\n    enabled: true\n","yaml",[208],{"type":47,"tag":84,"props":209,"children":210},{"__ignoreMap":81},[211,219,233,251,263,280,298,311,327,340,354,366,379,398,411,427,440,456,469],{"type":47,"tag":88,"props":212,"children":213},{"class":90,"line":91},[214],{"type":47,"tag":88,"props":215,"children":216},{"style":95},[217],{"type":53,"value":218},"# config.yaml\n",{"type":47,"tag":88,"props":220,"children":221},{"class":90,"line":101},[222,228],{"type":47,"tag":88,"props":223,"children":225},{"style":224},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[226],{"type":53,"value":227},"transport",{"type":47,"tag":88,"props":229,"children":230},{"style":122},[231],{"type":53,"value":232},":\n",{"type":47,"tag":88,"props":234,"children":235},{"class":90,"line":133},[236,241,246],{"type":47,"tag":88,"props":237,"children":238},{"style":224},[239],{"type":53,"value":240},"  type",{"type":47,"tag":88,"props":242,"children":243},{"style":122},[244],{"type":53,"value":245},":",{"type":47,"tag":88,"props":247,"children":248},{"style":111},[249],{"type":53,"value":250}," streamable_http\n",{"type":47,"tag":88,"props":252,"children":253},{"class":90,"line":143},[254,259],{"type":47,"tag":88,"props":255,"children":256},{"style":224},[257],{"type":53,"value":258},"schema",{"type":47,"tag":88,"props":260,"children":261},{"style":122},[262],{"type":53,"value":232},{"type":47,"tag":88,"props":264,"children":265},{"class":90,"line":152},[266,271,275],{"type":47,"tag":88,"props":267,"children":268},{"style":224},[269],{"type":53,"value":270},"  source",{"type":47,"tag":88,"props":272,"children":273},{"style":122},[274],{"type":53,"value":245},{"type":47,"tag":88,"props":276,"children":277},{"style":111},[278],{"type":53,"value":279}," local\n",{"type":47,"tag":88,"props":281,"children":283},{"class":90,"line":282},6,[284,289,293],{"type":47,"tag":88,"props":285,"children":286},{"style":224},[287],{"type":53,"value":288},"  path",{"type":47,"tag":88,"props":290,"children":291},{"style":122},[292],{"type":53,"value":245},{"type":47,"tag":88,"props":294,"children":295},{"style":111},[296],{"type":53,"value":297}," .\u002Fschema.graphql\n",{"type":47,"tag":88,"props":299,"children":301},{"class":90,"line":300},7,[302,307],{"type":47,"tag":88,"props":303,"children":304},{"style":224},[305],{"type":53,"value":306},"operations",{"type":47,"tag":88,"props":308,"children":309},{"style":122},[310],{"type":53,"value":232},{"type":47,"tag":88,"props":312,"children":314},{"class":90,"line":313},8,[315,319,323],{"type":47,"tag":88,"props":316,"children":317},{"style":224},[318],{"type":53,"value":270},{"type":47,"tag":88,"props":320,"children":321},{"style":122},[322],{"type":53,"value":245},{"type":47,"tag":88,"props":324,"children":325},{"style":111},[326],{"type":53,"value":279},{"type":47,"tag":88,"props":328,"children":330},{"class":90,"line":329},9,[331,336],{"type":47,"tag":88,"props":332,"children":333},{"style":224},[334],{"type":53,"value":335},"  paths",{"type":47,"tag":88,"props":337,"children":338},{"style":122},[339],{"type":53,"value":232},{"type":47,"tag":88,"props":341,"children":343},{"class":90,"line":342},10,[344,349],{"type":47,"tag":88,"props":345,"children":346},{"style":122},[347],{"type":53,"value":348},"    -",{"type":47,"tag":88,"props":350,"children":351},{"style":111},[352],{"type":53,"value":353}," .\u002Foperations\u002F\n",{"type":47,"tag":88,"props":355,"children":356},{"class":90,"line":28},[357,362],{"type":47,"tag":88,"props":358,"children":359},{"style":224},[360],{"type":53,"value":361},"introspection",{"type":47,"tag":88,"props":363,"children":364},{"style":122},[365],{"type":53,"value":232},{"type":47,"tag":88,"props":367,"children":369},{"class":90,"line":368},12,[370,375],{"type":47,"tag":88,"props":371,"children":372},{"style":224},[373],{"type":53,"value":374},"  introspect",{"type":47,"tag":88,"props":376,"children":377},{"style":122},[378],{"type":53,"value":232},{"type":47,"tag":88,"props":380,"children":382},{"class":90,"line":381},13,[383,388,392],{"type":47,"tag":88,"props":384,"children":385},{"style":224},[386],{"type":53,"value":387},"    enabled",{"type":47,"tag":88,"props":389,"children":390},{"style":122},[391],{"type":53,"value":245},{"type":47,"tag":88,"props":393,"children":395},{"style":394},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[396],{"type":53,"value":397}," true\n",{"type":47,"tag":88,"props":399,"children":401},{"class":90,"line":400},14,[402,407],{"type":47,"tag":88,"props":403,"children":404},{"style":224},[405],{"type":53,"value":406},"  search",{"type":47,"tag":88,"props":408,"children":409},{"style":122},[410],{"type":53,"value":232},{"type":47,"tag":88,"props":412,"children":414},{"class":90,"line":413},15,[415,419,423],{"type":47,"tag":88,"props":416,"children":417},{"style":224},[418],{"type":53,"value":387},{"type":47,"tag":88,"props":420,"children":421},{"style":122},[422],{"type":53,"value":245},{"type":47,"tag":88,"props":424,"children":425},{"style":394},[426],{"type":53,"value":397},{"type":47,"tag":88,"props":428,"children":430},{"class":90,"line":429},16,[431,436],{"type":47,"tag":88,"props":432,"children":433},{"style":224},[434],{"type":53,"value":435},"  validate",{"type":47,"tag":88,"props":437,"children":438},{"style":122},[439],{"type":53,"value":232},{"type":47,"tag":88,"props":441,"children":443},{"class":90,"line":442},17,[444,448,452],{"type":47,"tag":88,"props":445,"children":446},{"style":224},[447],{"type":53,"value":387},{"type":47,"tag":88,"props":449,"children":450},{"style":122},[451],{"type":53,"value":245},{"type":47,"tag":88,"props":453,"children":454},{"style":394},[455],{"type":53,"value":397},{"type":47,"tag":88,"props":457,"children":459},{"class":90,"line":458},18,[460,465],{"type":47,"tag":88,"props":461,"children":462},{"style":224},[463],{"type":53,"value":464},"  execute",{"type":47,"tag":88,"props":466,"children":467},{"style":122},[468],{"type":53,"value":232},{"type":47,"tag":88,"props":470,"children":472},{"class":90,"line":471},19,[473,477,481],{"type":47,"tag":88,"props":474,"children":475},{"style":224},[476],{"type":53,"value":387},{"type":47,"tag":88,"props":478,"children":479},{"style":122},[480],{"type":53,"value":245},{"type":47,"tag":88,"props":482,"children":483},{"style":394},[484],{"type":53,"value":397},{"type":47,"tag":56,"props":486,"children":487},{},[488],{"type":53,"value":489},"Start the server:",{"type":47,"tag":76,"props":491,"children":493},{"className":78,"code":492,"language":80,"meta":81,"style":81},"apollo-mcp-server .\u002Fconfig.yaml\n",[494],{"type":47,"tag":84,"props":495,"children":496},{"__ignoreMap":81},[497],{"type":47,"tag":88,"props":498,"children":499},{"class":90,"line":91},[500,504],{"type":47,"tag":88,"props":501,"children":502},{"style":105},[503],{"type":53,"value":4},{"type":47,"tag":88,"props":505,"children":506},{"style":111},[507],{"type":53,"value":508}," .\u002Fconfig.yaml\n",{"type":47,"tag":56,"props":510,"children":511},{},[512,514,520,522,528,530,536,538,544,546,552],{"type":53,"value":513},"The MCP endpoint is available at ",{"type":47,"tag":84,"props":515,"children":517},{"className":516},[],[518],{"type":53,"value":519},"http:\u002F\u002F127.0.0.1:8000\u002Fmcp",{"type":53,"value":521}," (streamable_http defaults: address ",{"type":47,"tag":84,"props":523,"children":525},{"className":524},[],[526],{"type":53,"value":527},"127.0.0.1",{"type":53,"value":529},", port ",{"type":47,"tag":84,"props":531,"children":533},{"className":532},[],[534],{"type":53,"value":535},"8000",{"type":53,"value":537},"). The GraphQL endpoint defaults to ",{"type":47,"tag":84,"props":539,"children":541},{"className":540},[],[542],{"type":53,"value":543},"http:\u002F\u002Flocalhost:4000\u002F",{"type":53,"value":545}," — override with the ",{"type":47,"tag":84,"props":547,"children":549},{"className":548},[],[550],{"type":53,"value":551},"endpoint",{"type":53,"value":553}," key if your API runs elsewhere.",{"type":47,"tag":69,"props":555,"children":557},{"id":556},"step-3-connect",[558],{"type":53,"value":559},"Step 3: Connect",{"type":47,"tag":56,"props":561,"children":562},{},[563],{"type":53,"value":564},"Add to your MCP client configuration:",{"type":47,"tag":56,"props":566,"children":567},{},[568],{"type":47,"tag":569,"props":570,"children":571},"strong",{},[572],{"type":53,"value":573},"Streamable HTTP (recommended):",{"type":47,"tag":56,"props":575,"children":576},{},[577,579,585],{"type":53,"value":578},"Claude Desktop (",{"type":47,"tag":84,"props":580,"children":582},{"className":581},[],[583],{"type":53,"value":584},"claude_desktop_config.json",{"type":53,"value":586},"):",{"type":47,"tag":76,"props":588,"children":592},{"className":589,"code":590,"language":591,"meta":81,"style":81},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"mcpServers\": {\n    \"graphql-api\": {\n      \"command\": \"npx\",\n      \"args\": [\"mcp-remote\", \"http:\u002F\u002F127.0.0.1:8000\u002Fmcp\"]\n    }\n  }\n}\n","json",[593],{"type":47,"tag":84,"props":594,"children":595},{"__ignoreMap":81},[596,604,632,657,698,758,766,774],{"type":47,"tag":88,"props":597,"children":598},{"class":90,"line":91},[599],{"type":47,"tag":88,"props":600,"children":601},{"style":122},[602],{"type":53,"value":603},"{\n",{"type":47,"tag":88,"props":605,"children":606},{"class":90,"line":101},[607,612,618,623,627],{"type":47,"tag":88,"props":608,"children":609},{"style":122},[610],{"type":53,"value":611},"  \"",{"type":47,"tag":88,"props":613,"children":615},{"style":614},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[616],{"type":53,"value":617},"mcpServers",{"type":47,"tag":88,"props":619,"children":620},{"style":122},[621],{"type":53,"value":622},"\"",{"type":47,"tag":88,"props":624,"children":625},{"style":122},[626],{"type":53,"value":245},{"type":47,"tag":88,"props":628,"children":629},{"style":122},[630],{"type":53,"value":631}," {\n",{"type":47,"tag":88,"props":633,"children":634},{"class":90,"line":133},[635,640,645,649,653],{"type":47,"tag":88,"props":636,"children":637},{"style":122},[638],{"type":53,"value":639},"    \"",{"type":47,"tag":88,"props":641,"children":642},{"style":105},[643],{"type":53,"value":644},"graphql-api",{"type":47,"tag":88,"props":646,"children":647},{"style":122},[648],{"type":53,"value":622},{"type":47,"tag":88,"props":650,"children":651},{"style":122},[652],{"type":53,"value":245},{"type":47,"tag":88,"props":654,"children":655},{"style":122},[656],{"type":53,"value":631},{"type":47,"tag":88,"props":658,"children":659},{"class":90,"line":143},[660,665,671,675,679,684,689,693],{"type":47,"tag":88,"props":661,"children":662},{"style":122},[663],{"type":53,"value":664},"      \"",{"type":47,"tag":88,"props":666,"children":668},{"style":667},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[669],{"type":53,"value":670},"command",{"type":47,"tag":88,"props":672,"children":673},{"style":122},[674],{"type":53,"value":622},{"type":47,"tag":88,"props":676,"children":677},{"style":122},[678],{"type":53,"value":245},{"type":47,"tag":88,"props":680,"children":681},{"style":122},[682],{"type":53,"value":683}," \"",{"type":47,"tag":88,"props":685,"children":686},{"style":111},[687],{"type":53,"value":688},"npx",{"type":47,"tag":88,"props":690,"children":691},{"style":122},[692],{"type":53,"value":622},{"type":47,"tag":88,"props":694,"children":695},{"style":122},[696],{"type":53,"value":697},",\n",{"type":47,"tag":88,"props":699,"children":700},{"class":90,"line":152},[701,705,710,714,718,723,727,732,736,741,745,749,753],{"type":47,"tag":88,"props":702,"children":703},{"style":122},[704],{"type":53,"value":664},{"type":47,"tag":88,"props":706,"children":707},{"style":667},[708],{"type":53,"value":709},"args",{"type":47,"tag":88,"props":711,"children":712},{"style":122},[713],{"type":53,"value":622},{"type":47,"tag":88,"props":715,"children":716},{"style":122},[717],{"type":53,"value":245},{"type":47,"tag":88,"props":719,"children":720},{"style":122},[721],{"type":53,"value":722}," [",{"type":47,"tag":88,"props":724,"children":725},{"style":122},[726],{"type":53,"value":622},{"type":47,"tag":88,"props":728,"children":729},{"style":111},[730],{"type":53,"value":731},"mcp-remote",{"type":47,"tag":88,"props":733,"children":734},{"style":122},[735],{"type":53,"value":622},{"type":47,"tag":88,"props":737,"children":738},{"style":122},[739],{"type":53,"value":740},",",{"type":47,"tag":88,"props":742,"children":743},{"style":122},[744],{"type":53,"value":683},{"type":47,"tag":88,"props":746,"children":747},{"style":111},[748],{"type":53,"value":519},{"type":47,"tag":88,"props":750,"children":751},{"style":122},[752],{"type":53,"value":622},{"type":47,"tag":88,"props":754,"children":755},{"style":122},[756],{"type":53,"value":757},"]\n",{"type":47,"tag":88,"props":759,"children":760},{"class":90,"line":282},[761],{"type":47,"tag":88,"props":762,"children":763},{"style":122},[764],{"type":53,"value":765},"    }\n",{"type":47,"tag":88,"props":767,"children":768},{"class":90,"line":300},[769],{"type":47,"tag":88,"props":770,"children":771},{"style":122},[772],{"type":53,"value":773},"  }\n",{"type":47,"tag":88,"props":775,"children":776},{"class":90,"line":313},[777],{"type":47,"tag":88,"props":778,"children":779},{"style":122},[780],{"type":53,"value":781},"}\n",{"type":47,"tag":56,"props":783,"children":784},{},[785],{"type":53,"value":786},"Claude Code:",{"type":47,"tag":76,"props":788,"children":790},{"className":78,"code":789,"language":80,"meta":81,"style":81},"claude mcp add graphql-api -- npx mcp-remote http:\u002F\u002F127.0.0.1:8000\u002Fmcp\n",[791],{"type":47,"tag":84,"props":792,"children":793},{"__ignoreMap":81},[794],{"type":47,"tag":88,"props":795,"children":796},{"class":90,"line":91},[797,802,807,812,817,822,827,832],{"type":47,"tag":88,"props":798,"children":799},{"style":105},[800],{"type":53,"value":801},"claude",{"type":47,"tag":88,"props":803,"children":804},{"style":111},[805],{"type":53,"value":806}," mcp",{"type":47,"tag":88,"props":808,"children":809},{"style":111},[810],{"type":53,"value":811}," add",{"type":47,"tag":88,"props":813,"children":814},{"style":111},[815],{"type":53,"value":816}," graphql-api",{"type":47,"tag":88,"props":818,"children":819},{"style":111},[820],{"type":53,"value":821}," --",{"type":47,"tag":88,"props":823,"children":824},{"style":111},[825],{"type":53,"value":826}," npx",{"type":47,"tag":88,"props":828,"children":829},{"style":111},[830],{"type":53,"value":831}," mcp-remote",{"type":47,"tag":88,"props":833,"children":834},{"style":111},[835],{"type":53,"value":836}," http:\u002F\u002F127.0.0.1:8000\u002Fmcp\n",{"type":47,"tag":56,"props":838,"children":839},{},[840],{"type":47,"tag":569,"props":841,"children":842},{},[843],{"type":53,"value":844},"Stdio (client launches the server directly):",{"type":47,"tag":56,"props":846,"children":847},{},[848,849,854,856,862],{"type":53,"value":578},{"type":47,"tag":84,"props":850,"children":852},{"className":851},[],[853],{"type":53,"value":584},{"type":53,"value":855},") or Claude Code (",{"type":47,"tag":84,"props":857,"children":859},{"className":858},[],[860],{"type":53,"value":861},".mcp.json",{"type":53,"value":586},{"type":47,"tag":76,"props":864,"children":866},{"className":589,"code":865,"language":591,"meta":81,"style":81},"{\n  \"mcpServers\": {\n    \"graphql-api\": {\n      \"command\": \".\u002Fapollo-mcp-server\",\n      \"args\": [\".\u002Fconfig.yaml\"]\n    }\n  }\n}\n",[867],{"type":47,"tag":84,"props":868,"children":869},{"__ignoreMap":81},[870,877,900,923,959,999,1006,1013],{"type":47,"tag":88,"props":871,"children":872},{"class":90,"line":91},[873],{"type":47,"tag":88,"props":874,"children":875},{"style":122},[876],{"type":53,"value":603},{"type":47,"tag":88,"props":878,"children":879},{"class":90,"line":101},[880,884,888,892,896],{"type":47,"tag":88,"props":881,"children":882},{"style":122},[883],{"type":53,"value":611},{"type":47,"tag":88,"props":885,"children":886},{"style":614},[887],{"type":53,"value":617},{"type":47,"tag":88,"props":889,"children":890},{"style":122},[891],{"type":53,"value":622},{"type":47,"tag":88,"props":893,"children":894},{"style":122},[895],{"type":53,"value":245},{"type":47,"tag":88,"props":897,"children":898},{"style":122},[899],{"type":53,"value":631},{"type":47,"tag":88,"props":901,"children":902},{"class":90,"line":133},[903,907,911,915,919],{"type":47,"tag":88,"props":904,"children":905},{"style":122},[906],{"type":53,"value":639},{"type":47,"tag":88,"props":908,"children":909},{"style":105},[910],{"type":53,"value":644},{"type":47,"tag":88,"props":912,"children":913},{"style":122},[914],{"type":53,"value":622},{"type":47,"tag":88,"props":916,"children":917},{"style":122},[918],{"type":53,"value":245},{"type":47,"tag":88,"props":920,"children":921},{"style":122},[922],{"type":53,"value":631},{"type":47,"tag":88,"props":924,"children":925},{"class":90,"line":143},[926,930,934,938,942,946,951,955],{"type":47,"tag":88,"props":927,"children":928},{"style":122},[929],{"type":53,"value":664},{"type":47,"tag":88,"props":931,"children":932},{"style":667},[933],{"type":53,"value":670},{"type":47,"tag":88,"props":935,"children":936},{"style":122},[937],{"type":53,"value":622},{"type":47,"tag":88,"props":939,"children":940},{"style":122},[941],{"type":53,"value":245},{"type":47,"tag":88,"props":943,"children":944},{"style":122},[945],{"type":53,"value":683},{"type":47,"tag":88,"props":947,"children":948},{"style":111},[949],{"type":53,"value":950},".\u002Fapollo-mcp-server",{"type":47,"tag":88,"props":952,"children":953},{"style":122},[954],{"type":53,"value":622},{"type":47,"tag":88,"props":956,"children":957},{"style":122},[958],{"type":53,"value":697},{"type":47,"tag":88,"props":960,"children":961},{"class":90,"line":152},[962,966,970,974,978,982,986,991,995],{"type":47,"tag":88,"props":963,"children":964},{"style":122},[965],{"type":53,"value":664},{"type":47,"tag":88,"props":967,"children":968},{"style":667},[969],{"type":53,"value":709},{"type":47,"tag":88,"props":971,"children":972},{"style":122},[973],{"type":53,"value":622},{"type":47,"tag":88,"props":975,"children":976},{"style":122},[977],{"type":53,"value":245},{"type":47,"tag":88,"props":979,"children":980},{"style":122},[981],{"type":53,"value":722},{"type":47,"tag":88,"props":983,"children":984},{"style":122},[985],{"type":53,"value":622},{"type":47,"tag":88,"props":987,"children":988},{"style":111},[989],{"type":53,"value":990},".\u002Fconfig.yaml",{"type":47,"tag":88,"props":992,"children":993},{"style":122},[994],{"type":53,"value":622},{"type":47,"tag":88,"props":996,"children":997},{"style":122},[998],{"type":53,"value":757},{"type":47,"tag":88,"props":1000,"children":1001},{"class":90,"line":282},[1002],{"type":47,"tag":88,"props":1003,"children":1004},{"style":122},[1005],{"type":53,"value":765},{"type":47,"tag":88,"props":1007,"children":1008},{"class":90,"line":300},[1009],{"type":47,"tag":88,"props":1010,"children":1011},{"style":122},[1012],{"type":53,"value":773},{"type":47,"tag":88,"props":1014,"children":1015},{"class":90,"line":313},[1016],{"type":47,"tag":88,"props":1017,"children":1018},{"style":122},[1019],{"type":53,"value":781},{"type":47,"tag":62,"props":1021,"children":1023},{"id":1022},"built-in-tools",[1024],{"type":53,"value":1025},"Built-in Tools",{"type":47,"tag":56,"props":1027,"children":1028},{},[1029],{"type":53,"value":1030},"Apollo MCP Server provides four introspection tools:",{"type":47,"tag":1032,"props":1033,"children":1034},"table",{},[1035,1059],{"type":47,"tag":1036,"props":1037,"children":1038},"thead",{},[1039],{"type":47,"tag":1040,"props":1041,"children":1042},"tr",{},[1043,1049,1054],{"type":47,"tag":1044,"props":1045,"children":1046},"th",{},[1047],{"type":53,"value":1048},"Tool",{"type":47,"tag":1044,"props":1050,"children":1051},{},[1052],{"type":53,"value":1053},"Purpose",{"type":47,"tag":1044,"props":1055,"children":1056},{},[1057],{"type":53,"value":1058},"When to Use",{"type":47,"tag":1060,"props":1061,"children":1062},"tbody",{},[1063,1086,1108,1130],{"type":47,"tag":1040,"props":1064,"children":1065},{},[1066,1076,1081],{"type":47,"tag":1067,"props":1068,"children":1069},"td",{},[1070],{"type":47,"tag":84,"props":1071,"children":1073},{"className":1072},[],[1074],{"type":53,"value":1075},"introspect",{"type":47,"tag":1067,"props":1077,"children":1078},{},[1079],{"type":53,"value":1080},"Explore schema types in detail",{"type":47,"tag":1067,"props":1082,"children":1083},{},[1084],{"type":53,"value":1085},"Need type definitions, fields, relationships",{"type":47,"tag":1040,"props":1087,"children":1088},{},[1089,1098,1103],{"type":47,"tag":1067,"props":1090,"children":1091},{},[1092],{"type":47,"tag":84,"props":1093,"children":1095},{"className":1094},[],[1096],{"type":53,"value":1097},"search",{"type":47,"tag":1067,"props":1099,"children":1100},{},[1101],{"type":53,"value":1102},"Find types in schema",{"type":47,"tag":1067,"props":1104,"children":1105},{},[1106],{"type":53,"value":1107},"Looking for specific types or fields",{"type":47,"tag":1040,"props":1109,"children":1110},{},[1111,1120,1125],{"type":47,"tag":1067,"props":1112,"children":1113},{},[1114],{"type":47,"tag":84,"props":1115,"children":1117},{"className":1116},[],[1118],{"type":53,"value":1119},"validate",{"type":47,"tag":1067,"props":1121,"children":1122},{},[1123],{"type":53,"value":1124},"Check operation validity",{"type":47,"tag":1067,"props":1126,"children":1127},{},[1128],{"type":53,"value":1129},"Before executing operations",{"type":47,"tag":1040,"props":1131,"children":1132},{},[1133,1142,1147],{"type":47,"tag":1067,"props":1134,"children":1135},{},[1136],{"type":47,"tag":84,"props":1137,"children":1139},{"className":1138},[],[1140],{"type":53,"value":1141},"execute",{"type":47,"tag":1067,"props":1143,"children":1144},{},[1145],{"type":53,"value":1146},"Run ad-hoc GraphQL operations",{"type":47,"tag":1067,"props":1148,"children":1149},{},[1150],{"type":53,"value":1151},"Testing or one-off queries",{"type":47,"tag":62,"props":1153,"children":1155},{"id":1154},"defining-custom-tools",[1156],{"type":53,"value":1157},"Defining Custom Tools",{"type":47,"tag":56,"props":1159,"children":1160},{},[1161],{"type":53,"value":1162},"MCP tools are created from GraphQL operations. Three methods:",{"type":47,"tag":69,"props":1164,"children":1166},{"id":1165},"_1-operation-files-recommended",[1167],{"type":53,"value":1168},"1. Operation Files (Recommended)",{"type":47,"tag":76,"props":1170,"children":1172},{"className":204,"code":1171,"language":206,"meta":81,"style":81},"operations:\n  source: local\n  paths:\n    - .\u002Foperations\u002F\n",[1173],{"type":47,"tag":84,"props":1174,"children":1175},{"__ignoreMap":81},[1176,1187,1202,1213],{"type":47,"tag":88,"props":1177,"children":1178},{"class":90,"line":91},[1179,1183],{"type":47,"tag":88,"props":1180,"children":1181},{"style":224},[1182],{"type":53,"value":306},{"type":47,"tag":88,"props":1184,"children":1185},{"style":122},[1186],{"type":53,"value":232},{"type":47,"tag":88,"props":1188,"children":1189},{"class":90,"line":101},[1190,1194,1198],{"type":47,"tag":88,"props":1191,"children":1192},{"style":224},[1193],{"type":53,"value":270},{"type":47,"tag":88,"props":1195,"children":1196},{"style":122},[1197],{"type":53,"value":245},{"type":47,"tag":88,"props":1199,"children":1200},{"style":111},[1201],{"type":53,"value":279},{"type":47,"tag":88,"props":1203,"children":1204},{"class":90,"line":133},[1205,1209],{"type":47,"tag":88,"props":1206,"children":1207},{"style":224},[1208],{"type":53,"value":335},{"type":47,"tag":88,"props":1210,"children":1211},{"style":122},[1212],{"type":53,"value":232},{"type":47,"tag":88,"props":1214,"children":1215},{"class":90,"line":143},[1216,1220],{"type":47,"tag":88,"props":1217,"children":1218},{"style":122},[1219],{"type":53,"value":348},{"type":47,"tag":88,"props":1221,"children":1222},{"style":111},[1223],{"type":53,"value":353},{"type":47,"tag":56,"props":1225,"children":1226},{},[1227],{"type":53,"value":1228},"Each file must contain exactly one operation. Each named operation becomes an MCP tool.",{"type":47,"tag":76,"props":1230,"children":1233},{"className":1231,"code":1232,"language":15,"meta":81,"style":81},"language-graphql shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# operations\u002FGetUser.graphql\nquery GetUser($id: ID!) {\n  user(id: $id) {\n    id\n    name\n    email\n  }\n}\n",[1234],{"type":47,"tag":84,"props":1235,"children":1236},{"__ignoreMap":81},[1237,1245,1253,1261,1269,1277,1285,1292],{"type":47,"tag":88,"props":1238,"children":1239},{"class":90,"line":91},[1240],{"type":47,"tag":88,"props":1241,"children":1242},{},[1243],{"type":53,"value":1244},"# operations\u002FGetUser.graphql\n",{"type":47,"tag":88,"props":1246,"children":1247},{"class":90,"line":101},[1248],{"type":47,"tag":88,"props":1249,"children":1250},{},[1251],{"type":53,"value":1252},"query GetUser($id: ID!) {\n",{"type":47,"tag":88,"props":1254,"children":1255},{"class":90,"line":133},[1256],{"type":47,"tag":88,"props":1257,"children":1258},{},[1259],{"type":53,"value":1260},"  user(id: $id) {\n",{"type":47,"tag":88,"props":1262,"children":1263},{"class":90,"line":143},[1264],{"type":47,"tag":88,"props":1265,"children":1266},{},[1267],{"type":53,"value":1268},"    id\n",{"type":47,"tag":88,"props":1270,"children":1271},{"class":90,"line":152},[1272],{"type":47,"tag":88,"props":1273,"children":1274},{},[1275],{"type":53,"value":1276},"    name\n",{"type":47,"tag":88,"props":1278,"children":1279},{"class":90,"line":282},[1280],{"type":47,"tag":88,"props":1281,"children":1282},{},[1283],{"type":53,"value":1284},"    email\n",{"type":47,"tag":88,"props":1286,"children":1287},{"class":90,"line":300},[1288],{"type":47,"tag":88,"props":1289,"children":1290},{},[1291],{"type":53,"value":773},{"type":47,"tag":88,"props":1293,"children":1294},{"class":90,"line":313},[1295],{"type":47,"tag":88,"props":1296,"children":1297},{},[1298],{"type":53,"value":781},{"type":47,"tag":76,"props":1300,"children":1302},{"className":1231,"code":1301,"language":15,"meta":81,"style":81},"# operations\u002FCreateUser.graphql\nmutation CreateUser($input: CreateUserInput!) {\n  createUser(input: $input) {\n    id\n    name\n  }\n}\n",[1303],{"type":47,"tag":84,"props":1304,"children":1305},{"__ignoreMap":81},[1306,1314,1322,1330,1337,1344,1351],{"type":47,"tag":88,"props":1307,"children":1308},{"class":90,"line":91},[1309],{"type":47,"tag":88,"props":1310,"children":1311},{},[1312],{"type":53,"value":1313},"# operations\u002FCreateUser.graphql\n",{"type":47,"tag":88,"props":1315,"children":1316},{"class":90,"line":101},[1317],{"type":47,"tag":88,"props":1318,"children":1319},{},[1320],{"type":53,"value":1321},"mutation CreateUser($input: CreateUserInput!) {\n",{"type":47,"tag":88,"props":1323,"children":1324},{"class":90,"line":133},[1325],{"type":47,"tag":88,"props":1326,"children":1327},{},[1328],{"type":53,"value":1329},"  createUser(input: $input) {\n",{"type":47,"tag":88,"props":1331,"children":1332},{"class":90,"line":143},[1333],{"type":47,"tag":88,"props":1334,"children":1335},{},[1336],{"type":53,"value":1268},{"type":47,"tag":88,"props":1338,"children":1339},{"class":90,"line":152},[1340],{"type":47,"tag":88,"props":1341,"children":1342},{},[1343],{"type":53,"value":1276},{"type":47,"tag":88,"props":1345,"children":1346},{"class":90,"line":282},[1347],{"type":47,"tag":88,"props":1348,"children":1349},{},[1350],{"type":53,"value":773},{"type":47,"tag":88,"props":1352,"children":1353},{"class":90,"line":300},[1354],{"type":47,"tag":88,"props":1355,"children":1356},{},[1357],{"type":53,"value":781},{"type":47,"tag":69,"props":1359,"children":1361},{"id":1360},"_2-operation-collections",[1362],{"type":53,"value":1363},"2. Operation Collections",{"type":47,"tag":76,"props":1365,"children":1367},{"className":204,"code":1366,"language":206,"meta":81,"style":81},"operations:\n  source: collection\n  id: your-collection-id\n",[1368],{"type":47,"tag":84,"props":1369,"children":1370},{"__ignoreMap":81},[1371,1382,1398],{"type":47,"tag":88,"props":1372,"children":1373},{"class":90,"line":91},[1374,1378],{"type":47,"tag":88,"props":1375,"children":1376},{"style":224},[1377],{"type":53,"value":306},{"type":47,"tag":88,"props":1379,"children":1380},{"style":122},[1381],{"type":53,"value":232},{"type":47,"tag":88,"props":1383,"children":1384},{"class":90,"line":101},[1385,1389,1393],{"type":47,"tag":88,"props":1386,"children":1387},{"style":224},[1388],{"type":53,"value":270},{"type":47,"tag":88,"props":1390,"children":1391},{"style":122},[1392],{"type":53,"value":245},{"type":47,"tag":88,"props":1394,"children":1395},{"style":111},[1396],{"type":53,"value":1397}," collection\n",{"type":47,"tag":88,"props":1399,"children":1400},{"class":90,"line":133},[1401,1406,1410],{"type":47,"tag":88,"props":1402,"children":1403},{"style":224},[1404],{"type":53,"value":1405},"  id",{"type":47,"tag":88,"props":1407,"children":1408},{"style":122},[1409],{"type":53,"value":245},{"type":47,"tag":88,"props":1411,"children":1412},{"style":111},[1413],{"type":53,"value":1414}," your-collection-id\n",{"type":47,"tag":56,"props":1416,"children":1417},{},[1418],{"type":53,"value":1419},"Use GraphOS Studio to manage operations collaboratively.",{"type":47,"tag":69,"props":1421,"children":1423},{"id":1422},"_3-persisted-queries",[1424],{"type":53,"value":1425},"3. Persisted Queries",{"type":47,"tag":76,"props":1427,"children":1429},{"className":204,"code":1428,"language":206,"meta":81,"style":81},"operations:\n  source: manifest\n  path: .\u002Fpersisted-query-manifest.json\n",[1430],{"type":47,"tag":84,"props":1431,"children":1432},{"__ignoreMap":81},[1433,1444,1460],{"type":47,"tag":88,"props":1434,"children":1435},{"class":90,"line":91},[1436,1440],{"type":47,"tag":88,"props":1437,"children":1438},{"style":224},[1439],{"type":53,"value":306},{"type":47,"tag":88,"props":1441,"children":1442},{"style":122},[1443],{"type":53,"value":232},{"type":47,"tag":88,"props":1445,"children":1446},{"class":90,"line":101},[1447,1451,1455],{"type":47,"tag":88,"props":1448,"children":1449},{"style":224},[1450],{"type":53,"value":270},{"type":47,"tag":88,"props":1452,"children":1453},{"style":122},[1454],{"type":53,"value":245},{"type":47,"tag":88,"props":1456,"children":1457},{"style":111},[1458],{"type":53,"value":1459}," manifest\n",{"type":47,"tag":88,"props":1461,"children":1462},{"class":90,"line":133},[1463,1467,1471],{"type":47,"tag":88,"props":1464,"children":1465},{"style":224},[1466],{"type":53,"value":288},{"type":47,"tag":88,"props":1468,"children":1469},{"style":122},[1470],{"type":53,"value":245},{"type":47,"tag":88,"props":1472,"children":1473},{"style":111},[1474],{"type":53,"value":1475}," .\u002Fpersisted-query-manifest.json\n",{"type":47,"tag":56,"props":1477,"children":1478},{},[1479],{"type":53,"value":1480},"For production environments with pre-approved operations.",{"type":47,"tag":62,"props":1482,"children":1484},{"id":1483},"reference-files",[1485],{"type":53,"value":1486},"Reference Files",{"type":47,"tag":56,"props":1488,"children":1489},{},[1490],{"type":53,"value":1491},"Detailed documentation for specific topics:",{"type":47,"tag":1493,"props":1494,"children":1495},"ul",{},[1496,1509,1520],{"type":47,"tag":1497,"props":1498,"children":1499},"li",{},[1500,1507],{"type":47,"tag":1501,"props":1502,"children":1504},"a",{"href":1503},"references\u002Ftools.md",[1505],{"type":53,"value":1506},"Tools",{"type":53,"value":1508}," - Introspection tools and minify notation",{"type":47,"tag":1497,"props":1510,"children":1511},{},[1512,1518],{"type":47,"tag":1501,"props":1513,"children":1515},{"href":1514},"references\u002Fconfiguration.md",[1516],{"type":53,"value":1517},"Configuration",{"type":53,"value":1519}," - All configuration options",{"type":47,"tag":1497,"props":1521,"children":1522},{},[1523,1529],{"type":47,"tag":1501,"props":1524,"children":1526},{"href":1525},"references\u002Ftroubleshooting.md",[1527],{"type":53,"value":1528},"Troubleshooting",{"type":53,"value":1530}," - Common issues and solutions",{"type":47,"tag":62,"props":1532,"children":1534},{"id":1533},"key-rules",[1535],{"type":53,"value":1536},"Key Rules",{"type":47,"tag":69,"props":1538,"children":1540},{"id":1539},"security",[1541],{"type":53,"value":1542},"Security",{"type":47,"tag":1493,"props":1544,"children":1545},{},[1546,1556,1569,1574],{"type":47,"tag":1497,"props":1547,"children":1548},{},[1549,1554],{"type":47,"tag":569,"props":1550,"children":1551},{},[1552],{"type":53,"value":1553},"Never expose sensitive operations",{"type":53,"value":1555}," without authentication",{"type":47,"tag":1497,"props":1557,"children":1558},{},[1559,1561,1567],{"type":53,"value":1560},"Use ",{"type":47,"tag":84,"props":1562,"children":1564},{"className":1563},[],[1565],{"type":53,"value":1566},"headers",{"type":53,"value":1568}," configuration for API keys and tokens",{"type":47,"tag":1497,"props":1570,"children":1571},{},[1572],{"type":53,"value":1573},"Disable introspection tools in production (they are disabled by default)",{"type":47,"tag":1497,"props":1575,"children":1576},{},[1577,1579,1585],{"type":53,"value":1578},"Set ",{"type":47,"tag":84,"props":1580,"children":1582},{"className":1581},[],[1583],{"type":53,"value":1584},"overrides.mutation_mode: explicit",{"type":53,"value":1586}," to require confirmation for mutations",{"type":47,"tag":69,"props":1588,"children":1590},{"id":1589},"authentication",[1591],{"type":53,"value":1592},"Authentication",{"type":47,"tag":76,"props":1594,"children":1596},{"className":204,"code":1595,"language":206,"meta":81,"style":81},"# Static header\nheaders:\n  Authorization: \"Bearer ${env.API_TOKEN}\"\n\n# Dynamic header forwarding\nforward_headers:\n  - x-forwarded-token\n\n# OAuth (streamable_http transport)\ntransport:\n  type: streamable_http\n  auth:\n    servers:\n      - https:\u002F\u002Fauth.example.com\u002F.well-known\u002Fopenid-configuration\n    audiences:\n      - https:\u002F\u002Fapi.example.com\n",[1597],{"type":47,"tag":84,"props":1598,"children":1599},{"__ignoreMap":81},[1600,1608,1619,1645,1652,1660,1672,1685,1692,1700,1711,1726,1738,1750,1763,1775],{"type":47,"tag":88,"props":1601,"children":1602},{"class":90,"line":91},[1603],{"type":47,"tag":88,"props":1604,"children":1605},{"style":95},[1606],{"type":53,"value":1607},"# Static header\n",{"type":47,"tag":88,"props":1609,"children":1610},{"class":90,"line":101},[1611,1615],{"type":47,"tag":88,"props":1612,"children":1613},{"style":224},[1614],{"type":53,"value":1566},{"type":47,"tag":88,"props":1616,"children":1617},{"style":122},[1618],{"type":53,"value":232},{"type":47,"tag":88,"props":1620,"children":1621},{"class":90,"line":133},[1622,1627,1631,1635,1640],{"type":47,"tag":88,"props":1623,"children":1624},{"style":224},[1625],{"type":53,"value":1626},"  Authorization",{"type":47,"tag":88,"props":1628,"children":1629},{"style":122},[1630],{"type":53,"value":245},{"type":47,"tag":88,"props":1632,"children":1633},{"style":122},[1634],{"type":53,"value":683},{"type":47,"tag":88,"props":1636,"children":1637},{"style":111},[1638],{"type":53,"value":1639},"Bearer ${env.API_TOKEN}",{"type":47,"tag":88,"props":1641,"children":1642},{"style":122},[1643],{"type":53,"value":1644},"\"\n",{"type":47,"tag":88,"props":1646,"children":1647},{"class":90,"line":143},[1648],{"type":47,"tag":88,"props":1649,"children":1650},{"emptyLinePlaceholder":137},[1651],{"type":53,"value":140},{"type":47,"tag":88,"props":1653,"children":1654},{"class":90,"line":152},[1655],{"type":47,"tag":88,"props":1656,"children":1657},{"style":95},[1658],{"type":53,"value":1659},"# Dynamic header forwarding\n",{"type":47,"tag":88,"props":1661,"children":1662},{"class":90,"line":282},[1663,1668],{"type":47,"tag":88,"props":1664,"children":1665},{"style":224},[1666],{"type":53,"value":1667},"forward_headers",{"type":47,"tag":88,"props":1669,"children":1670},{"style":122},[1671],{"type":53,"value":232},{"type":47,"tag":88,"props":1673,"children":1674},{"class":90,"line":300},[1675,1680],{"type":47,"tag":88,"props":1676,"children":1677},{"style":122},[1678],{"type":53,"value":1679},"  -",{"type":47,"tag":88,"props":1681,"children":1682},{"style":111},[1683],{"type":53,"value":1684}," x-forwarded-token\n",{"type":47,"tag":88,"props":1686,"children":1687},{"class":90,"line":313},[1688],{"type":47,"tag":88,"props":1689,"children":1690},{"emptyLinePlaceholder":137},[1691],{"type":53,"value":140},{"type":47,"tag":88,"props":1693,"children":1694},{"class":90,"line":329},[1695],{"type":47,"tag":88,"props":1696,"children":1697},{"style":95},[1698],{"type":53,"value":1699},"# OAuth (streamable_http transport)\n",{"type":47,"tag":88,"props":1701,"children":1702},{"class":90,"line":342},[1703,1707],{"type":47,"tag":88,"props":1704,"children":1705},{"style":224},[1706],{"type":53,"value":227},{"type":47,"tag":88,"props":1708,"children":1709},{"style":122},[1710],{"type":53,"value":232},{"type":47,"tag":88,"props":1712,"children":1713},{"class":90,"line":28},[1714,1718,1722],{"type":47,"tag":88,"props":1715,"children":1716},{"style":224},[1717],{"type":53,"value":240},{"type":47,"tag":88,"props":1719,"children":1720},{"style":122},[1721],{"type":53,"value":245},{"type":47,"tag":88,"props":1723,"children":1724},{"style":111},[1725],{"type":53,"value":250},{"type":47,"tag":88,"props":1727,"children":1728},{"class":90,"line":368},[1729,1734],{"type":47,"tag":88,"props":1730,"children":1731},{"style":224},[1732],{"type":53,"value":1733},"  auth",{"type":47,"tag":88,"props":1735,"children":1736},{"style":122},[1737],{"type":53,"value":232},{"type":47,"tag":88,"props":1739,"children":1740},{"class":90,"line":381},[1741,1746],{"type":47,"tag":88,"props":1742,"children":1743},{"style":224},[1744],{"type":53,"value":1745},"    servers",{"type":47,"tag":88,"props":1747,"children":1748},{"style":122},[1749],{"type":53,"value":232},{"type":47,"tag":88,"props":1751,"children":1752},{"class":90,"line":400},[1753,1758],{"type":47,"tag":88,"props":1754,"children":1755},{"style":122},[1756],{"type":53,"value":1757},"      -",{"type":47,"tag":88,"props":1759,"children":1760},{"style":111},[1761],{"type":53,"value":1762}," https:\u002F\u002Fauth.example.com\u002F.well-known\u002Fopenid-configuration\n",{"type":47,"tag":88,"props":1764,"children":1765},{"class":90,"line":413},[1766,1771],{"type":47,"tag":88,"props":1767,"children":1768},{"style":224},[1769],{"type":53,"value":1770},"    audiences",{"type":47,"tag":88,"props":1772,"children":1773},{"style":122},[1774],{"type":53,"value":232},{"type":47,"tag":88,"props":1776,"children":1777},{"class":90,"line":429},[1778,1782],{"type":47,"tag":88,"props":1779,"children":1780},{"style":122},[1781],{"type":53,"value":1757},{"type":47,"tag":88,"props":1783,"children":1784},{"style":111},[1785],{"type":53,"value":1786}," https:\u002F\u002Fapi.example.com\n",{"type":47,"tag":69,"props":1788,"children":1790},{"id":1789},"token-optimization",[1791],{"type":53,"value":1792},"Token Optimization",{"type":47,"tag":56,"props":1794,"children":1795},{},[1796],{"type":53,"value":1797},"Enable minification to reduce token usage:",{"type":47,"tag":76,"props":1799,"children":1801},{"className":204,"code":1800,"language":206,"meta":81,"style":81},"introspection:\n  introspect:\n    minify: true\n  search:\n    minify: true\n",[1802],{"type":47,"tag":84,"props":1803,"children":1804},{"__ignoreMap":81},[1805,1816,1827,1843,1854],{"type":47,"tag":88,"props":1806,"children":1807},{"class":90,"line":91},[1808,1812],{"type":47,"tag":88,"props":1809,"children":1810},{"style":224},[1811],{"type":53,"value":361},{"type":47,"tag":88,"props":1813,"children":1814},{"style":122},[1815],{"type":53,"value":232},{"type":47,"tag":88,"props":1817,"children":1818},{"class":90,"line":101},[1819,1823],{"type":47,"tag":88,"props":1820,"children":1821},{"style":224},[1822],{"type":53,"value":374},{"type":47,"tag":88,"props":1824,"children":1825},{"style":122},[1826],{"type":53,"value":232},{"type":47,"tag":88,"props":1828,"children":1829},{"class":90,"line":133},[1830,1835,1839],{"type":47,"tag":88,"props":1831,"children":1832},{"style":224},[1833],{"type":53,"value":1834},"    minify",{"type":47,"tag":88,"props":1836,"children":1837},{"style":122},[1838],{"type":53,"value":245},{"type":47,"tag":88,"props":1840,"children":1841},{"style":394},[1842],{"type":53,"value":397},{"type":47,"tag":88,"props":1844,"children":1845},{"class":90,"line":143},[1846,1850],{"type":47,"tag":88,"props":1847,"children":1848},{"style":224},[1849],{"type":53,"value":406},{"type":47,"tag":88,"props":1851,"children":1852},{"style":122},[1853],{"type":53,"value":232},{"type":47,"tag":88,"props":1855,"children":1856},{"class":90,"line":152},[1857,1861,1865],{"type":47,"tag":88,"props":1858,"children":1859},{"style":224},[1860],{"type":53,"value":1834},{"type":47,"tag":88,"props":1862,"children":1863},{"style":122},[1864],{"type":53,"value":245},{"type":47,"tag":88,"props":1866,"children":1867},{"style":394},[1868],{"type":53,"value":397},{"type":47,"tag":56,"props":1870,"children":1871},{},[1872],{"type":53,"value":1873},"Minified output uses compact notation:",{"type":47,"tag":1493,"props":1875,"children":1876},{},[1877,1901,1939],{"type":47,"tag":1497,"props":1878,"children":1879},{},[1880,1885,1887,1892,1894,1899],{"type":47,"tag":569,"props":1881,"children":1882},{},[1883],{"type":53,"value":1884},"T",{"type":53,"value":1886}," = type, ",{"type":47,"tag":569,"props":1888,"children":1889},{},[1890],{"type":53,"value":1891},"I",{"type":53,"value":1893}," = input, ",{"type":47,"tag":569,"props":1895,"children":1896},{},[1897],{"type":53,"value":1898},"E",{"type":53,"value":1900}," = enum",{"type":47,"tag":1497,"props":1902,"children":1903},{},[1904,1909,1911,1916,1918,1923,1925,1930,1932,1937],{"type":47,"tag":569,"props":1905,"children":1906},{},[1907],{"type":53,"value":1908},"s",{"type":53,"value":1910}," = String, ",{"type":47,"tag":569,"props":1912,"children":1913},{},[1914],{"type":53,"value":1915},"i",{"type":53,"value":1917}," = Int, ",{"type":47,"tag":569,"props":1919,"children":1920},{},[1921],{"type":53,"value":1922},"b",{"type":53,"value":1924}," = Boolean, ",{"type":47,"tag":569,"props":1926,"children":1927},{},[1928],{"type":53,"value":1929},"f",{"type":53,"value":1931}," = Float, ",{"type":47,"tag":569,"props":1933,"children":1934},{},[1935],{"type":53,"value":1936},"d",{"type":53,"value":1938}," = ID",{"type":47,"tag":1497,"props":1940,"children":1941},{},[1942,1947,1949,1955],{"type":47,"tag":569,"props":1943,"children":1944},{},[1945],{"type":53,"value":1946},"!",{"type":53,"value":1948}," = required, ",{"type":47,"tag":569,"props":1950,"children":1951},{},[1952],{"type":47,"tag":88,"props":1953,"children":1954},{},[],{"type":53,"value":1956}," = list",{"type":47,"tag":69,"props":1958,"children":1960},{"id":1959},"mutations",[1961],{"type":53,"value":1962},"Mutations",{"type":47,"tag":56,"props":1964,"children":1965},{},[1966,1968,1974],{"type":53,"value":1967},"Control mutation behavior via the ",{"type":47,"tag":84,"props":1969,"children":1971},{"className":1970},[],[1972],{"type":53,"value":1973},"overrides",{"type":53,"value":1975}," section:",{"type":47,"tag":76,"props":1977,"children":1979},{"className":204,"code":1978,"language":206,"meta":81,"style":81},"overrides:\n  mutation_mode: all       # Execute mutations directly\n  # mutation_mode: explicit  # Require explicit confirmation\n  # mutation_mode: none      # Block all mutations (default)\n",[1980],{"type":47,"tag":84,"props":1981,"children":1982},{"__ignoreMap":81},[1983,1994,2016,2024],{"type":47,"tag":88,"props":1984,"children":1985},{"class":90,"line":91},[1986,1990],{"type":47,"tag":88,"props":1987,"children":1988},{"style":224},[1989],{"type":53,"value":1973},{"type":47,"tag":88,"props":1991,"children":1992},{"style":122},[1993],{"type":53,"value":232},{"type":47,"tag":88,"props":1995,"children":1996},{"class":90,"line":101},[1997,2002,2006,2011],{"type":47,"tag":88,"props":1998,"children":1999},{"style":224},[2000],{"type":53,"value":2001},"  mutation_mode",{"type":47,"tag":88,"props":2003,"children":2004},{"style":122},[2005],{"type":53,"value":245},{"type":47,"tag":88,"props":2007,"children":2008},{"style":111},[2009],{"type":53,"value":2010}," all",{"type":47,"tag":88,"props":2012,"children":2013},{"style":95},[2014],{"type":53,"value":2015},"       # Execute mutations directly\n",{"type":47,"tag":88,"props":2017,"children":2018},{"class":90,"line":133},[2019],{"type":47,"tag":88,"props":2020,"children":2021},{"style":95},[2022],{"type":53,"value":2023},"  # mutation_mode: explicit  # Require explicit confirmation\n",{"type":47,"tag":88,"props":2025,"children":2026},{"class":90,"line":143},[2027],{"type":47,"tag":88,"props":2028,"children":2029},{"style":95},[2030],{"type":53,"value":2031},"  # mutation_mode: none      # Block all mutations (default)\n",{"type":47,"tag":62,"props":2033,"children":2035},{"id":2034},"common-patterns",[2036],{"type":53,"value":2037},"Common Patterns",{"type":47,"tag":69,"props":2039,"children":2041},{"id":2040},"graphos-cloud-schema",[2042],{"type":53,"value":2043},"GraphOS Cloud Schema",{"type":47,"tag":76,"props":2045,"children":2047},{"className":204,"code":2046,"language":206,"meta":81,"style":81},"# schema.source defaults to uplink — can be omitted when graphos is configured\ngraphos:\n  apollo_key: ${env.APOLLO_KEY}\n  apollo_graph_ref: my-graph@production\n",[2048],{"type":47,"tag":84,"props":2049,"children":2050},{"__ignoreMap":81},[2051,2059,2071,2088],{"type":47,"tag":88,"props":2052,"children":2053},{"class":90,"line":91},[2054],{"type":47,"tag":88,"props":2055,"children":2056},{"style":95},[2057],{"type":53,"value":2058},"# schema.source defaults to uplink — can be omitted when graphos is configured\n",{"type":47,"tag":88,"props":2060,"children":2061},{"class":90,"line":101},[2062,2067],{"type":47,"tag":88,"props":2063,"children":2064},{"style":224},[2065],{"type":53,"value":2066},"graphos",{"type":47,"tag":88,"props":2068,"children":2069},{"style":122},[2070],{"type":53,"value":232},{"type":47,"tag":88,"props":2072,"children":2073},{"class":90,"line":133},[2074,2079,2083],{"type":47,"tag":88,"props":2075,"children":2076},{"style":224},[2077],{"type":53,"value":2078},"  apollo_key",{"type":47,"tag":88,"props":2080,"children":2081},{"style":122},[2082],{"type":53,"value":245},{"type":47,"tag":88,"props":2084,"children":2085},{"style":111},[2086],{"type":53,"value":2087}," ${env.APOLLO_KEY}\n",{"type":47,"tag":88,"props":2089,"children":2090},{"class":90,"line":143},[2091,2096,2100],{"type":47,"tag":88,"props":2092,"children":2093},{"style":224},[2094],{"type":53,"value":2095},"  apollo_graph_ref",{"type":47,"tag":88,"props":2097,"children":2098},{"style":122},[2099],{"type":53,"value":245},{"type":47,"tag":88,"props":2101,"children":2102},{"style":111},[2103],{"type":53,"value":2104}," my-graph@production\n",{"type":47,"tag":69,"props":2106,"children":2108},{"id":2107},"local-development",[2109],{"type":53,"value":2110},"Local Development",{"type":47,"tag":76,"props":2112,"children":2114},{"className":204,"code":2113,"language":206,"meta":81,"style":81},"transport:\n  type: streamable_http\nschema:\n  source: local\n  path: .\u002Fschema.graphql\nintrospection:\n  introspect:\n    enabled: true\n  search:\n    enabled: true\n  validate:\n    enabled: true\n  execute:\n    enabled: true\noverrides:\n  mutation_mode: all\n",[2115],{"type":47,"tag":84,"props":2116,"children":2117},{"__ignoreMap":81},[2118,2129,2144,2155,2170,2185,2196,2207,2222,2233,2248,2259,2274,2285,2300,2311],{"type":47,"tag":88,"props":2119,"children":2120},{"class":90,"line":91},[2121,2125],{"type":47,"tag":88,"props":2122,"children":2123},{"style":224},[2124],{"type":53,"value":227},{"type":47,"tag":88,"props":2126,"children":2127},{"style":122},[2128],{"type":53,"value":232},{"type":47,"tag":88,"props":2130,"children":2131},{"class":90,"line":101},[2132,2136,2140],{"type":47,"tag":88,"props":2133,"children":2134},{"style":224},[2135],{"type":53,"value":240},{"type":47,"tag":88,"props":2137,"children":2138},{"style":122},[2139],{"type":53,"value":245},{"type":47,"tag":88,"props":2141,"children":2142},{"style":111},[2143],{"type":53,"value":250},{"type":47,"tag":88,"props":2145,"children":2146},{"class":90,"line":133},[2147,2151],{"type":47,"tag":88,"props":2148,"children":2149},{"style":224},[2150],{"type":53,"value":258},{"type":47,"tag":88,"props":2152,"children":2153},{"style":122},[2154],{"type":53,"value":232},{"type":47,"tag":88,"props":2156,"children":2157},{"class":90,"line":143},[2158,2162,2166],{"type":47,"tag":88,"props":2159,"children":2160},{"style":224},[2161],{"type":53,"value":270},{"type":47,"tag":88,"props":2163,"children":2164},{"style":122},[2165],{"type":53,"value":245},{"type":47,"tag":88,"props":2167,"children":2168},{"style":111},[2169],{"type":53,"value":279},{"type":47,"tag":88,"props":2171,"children":2172},{"class":90,"line":152},[2173,2177,2181],{"type":47,"tag":88,"props":2174,"children":2175},{"style":224},[2176],{"type":53,"value":288},{"type":47,"tag":88,"props":2178,"children":2179},{"style":122},[2180],{"type":53,"value":245},{"type":47,"tag":88,"props":2182,"children":2183},{"style":111},[2184],{"type":53,"value":297},{"type":47,"tag":88,"props":2186,"children":2187},{"class":90,"line":282},[2188,2192],{"type":47,"tag":88,"props":2189,"children":2190},{"style":224},[2191],{"type":53,"value":361},{"type":47,"tag":88,"props":2193,"children":2194},{"style":122},[2195],{"type":53,"value":232},{"type":47,"tag":88,"props":2197,"children":2198},{"class":90,"line":300},[2199,2203],{"type":47,"tag":88,"props":2200,"children":2201},{"style":224},[2202],{"type":53,"value":374},{"type":47,"tag":88,"props":2204,"children":2205},{"style":122},[2206],{"type":53,"value":232},{"type":47,"tag":88,"props":2208,"children":2209},{"class":90,"line":313},[2210,2214,2218],{"type":47,"tag":88,"props":2211,"children":2212},{"style":224},[2213],{"type":53,"value":387},{"type":47,"tag":88,"props":2215,"children":2216},{"style":122},[2217],{"type":53,"value":245},{"type":47,"tag":88,"props":2219,"children":2220},{"style":394},[2221],{"type":53,"value":397},{"type":47,"tag":88,"props":2223,"children":2224},{"class":90,"line":329},[2225,2229],{"type":47,"tag":88,"props":2226,"children":2227},{"style":224},[2228],{"type":53,"value":406},{"type":47,"tag":88,"props":2230,"children":2231},{"style":122},[2232],{"type":53,"value":232},{"type":47,"tag":88,"props":2234,"children":2235},{"class":90,"line":342},[2236,2240,2244],{"type":47,"tag":88,"props":2237,"children":2238},{"style":224},[2239],{"type":53,"value":387},{"type":47,"tag":88,"props":2241,"children":2242},{"style":122},[2243],{"type":53,"value":245},{"type":47,"tag":88,"props":2245,"children":2246},{"style":394},[2247],{"type":53,"value":397},{"type":47,"tag":88,"props":2249,"children":2250},{"class":90,"line":28},[2251,2255],{"type":47,"tag":88,"props":2252,"children":2253},{"style":224},[2254],{"type":53,"value":435},{"type":47,"tag":88,"props":2256,"children":2257},{"style":122},[2258],{"type":53,"value":232},{"type":47,"tag":88,"props":2260,"children":2261},{"class":90,"line":368},[2262,2266,2270],{"type":47,"tag":88,"props":2263,"children":2264},{"style":224},[2265],{"type":53,"value":387},{"type":47,"tag":88,"props":2267,"children":2268},{"style":122},[2269],{"type":53,"value":245},{"type":47,"tag":88,"props":2271,"children":2272},{"style":394},[2273],{"type":53,"value":397},{"type":47,"tag":88,"props":2275,"children":2276},{"class":90,"line":381},[2277,2281],{"type":47,"tag":88,"props":2278,"children":2279},{"style":224},[2280],{"type":53,"value":464},{"type":47,"tag":88,"props":2282,"children":2283},{"style":122},[2284],{"type":53,"value":232},{"type":47,"tag":88,"props":2286,"children":2287},{"class":90,"line":400},[2288,2292,2296],{"type":47,"tag":88,"props":2289,"children":2290},{"style":224},[2291],{"type":53,"value":387},{"type":47,"tag":88,"props":2293,"children":2294},{"style":122},[2295],{"type":53,"value":245},{"type":47,"tag":88,"props":2297,"children":2298},{"style":394},[2299],{"type":53,"value":397},{"type":47,"tag":88,"props":2301,"children":2302},{"class":90,"line":413},[2303,2307],{"type":47,"tag":88,"props":2304,"children":2305},{"style":224},[2306],{"type":53,"value":1973},{"type":47,"tag":88,"props":2308,"children":2309},{"style":122},[2310],{"type":53,"value":232},{"type":47,"tag":88,"props":2312,"children":2313},{"class":90,"line":429},[2314,2318,2322],{"type":47,"tag":88,"props":2315,"children":2316},{"style":224},[2317],{"type":53,"value":2001},{"type":47,"tag":88,"props":2319,"children":2320},{"style":122},[2321],{"type":53,"value":245},{"type":47,"tag":88,"props":2323,"children":2324},{"style":111},[2325],{"type":53,"value":2326}," all\n",{"type":47,"tag":69,"props":2328,"children":2330},{"id":2329},"production-setup",[2331],{"type":53,"value":2332},"Production Setup",{"type":47,"tag":76,"props":2334,"children":2336},{"className":204,"code":2335,"language":206,"meta":81,"style":81},"transport:\n  type: streamable_http\nendpoint: https:\u002F\u002Fapi.production.com\u002Fgraphql\noperations:\n  source: manifest\n  path: .\u002Fpersisted-query-manifest.json\ngraphos:\n  apollo_key: ${env.APOLLO_KEY}\n  apollo_graph_ref: ${env.APOLLO_GRAPH_REF}\nheaders:\n  Authorization: \"Bearer ${env.API_TOKEN}\"\nhealth_check:\n  enabled: true\n",[2337],{"type":47,"tag":84,"props":2338,"children":2339},{"__ignoreMap":81},[2340,2351,2366,2382,2393,2408,2423,2434,2449,2465,2476,2499,2511],{"type":47,"tag":88,"props":2341,"children":2342},{"class":90,"line":91},[2343,2347],{"type":47,"tag":88,"props":2344,"children":2345},{"style":224},[2346],{"type":53,"value":227},{"type":47,"tag":88,"props":2348,"children":2349},{"style":122},[2350],{"type":53,"value":232},{"type":47,"tag":88,"props":2352,"children":2353},{"class":90,"line":101},[2354,2358,2362],{"type":47,"tag":88,"props":2355,"children":2356},{"style":224},[2357],{"type":53,"value":240},{"type":47,"tag":88,"props":2359,"children":2360},{"style":122},[2361],{"type":53,"value":245},{"type":47,"tag":88,"props":2363,"children":2364},{"style":111},[2365],{"type":53,"value":250},{"type":47,"tag":88,"props":2367,"children":2368},{"class":90,"line":133},[2369,2373,2377],{"type":47,"tag":88,"props":2370,"children":2371},{"style":224},[2372],{"type":53,"value":551},{"type":47,"tag":88,"props":2374,"children":2375},{"style":122},[2376],{"type":53,"value":245},{"type":47,"tag":88,"props":2378,"children":2379},{"style":111},[2380],{"type":53,"value":2381}," https:\u002F\u002Fapi.production.com\u002Fgraphql\n",{"type":47,"tag":88,"props":2383,"children":2384},{"class":90,"line":143},[2385,2389],{"type":47,"tag":88,"props":2386,"children":2387},{"style":224},[2388],{"type":53,"value":306},{"type":47,"tag":88,"props":2390,"children":2391},{"style":122},[2392],{"type":53,"value":232},{"type":47,"tag":88,"props":2394,"children":2395},{"class":90,"line":152},[2396,2400,2404],{"type":47,"tag":88,"props":2397,"children":2398},{"style":224},[2399],{"type":53,"value":270},{"type":47,"tag":88,"props":2401,"children":2402},{"style":122},[2403],{"type":53,"value":245},{"type":47,"tag":88,"props":2405,"children":2406},{"style":111},[2407],{"type":53,"value":1459},{"type":47,"tag":88,"props":2409,"children":2410},{"class":90,"line":282},[2411,2415,2419],{"type":47,"tag":88,"props":2412,"children":2413},{"style":224},[2414],{"type":53,"value":288},{"type":47,"tag":88,"props":2416,"children":2417},{"style":122},[2418],{"type":53,"value":245},{"type":47,"tag":88,"props":2420,"children":2421},{"style":111},[2422],{"type":53,"value":1475},{"type":47,"tag":88,"props":2424,"children":2425},{"class":90,"line":300},[2426,2430],{"type":47,"tag":88,"props":2427,"children":2428},{"style":224},[2429],{"type":53,"value":2066},{"type":47,"tag":88,"props":2431,"children":2432},{"style":122},[2433],{"type":53,"value":232},{"type":47,"tag":88,"props":2435,"children":2436},{"class":90,"line":313},[2437,2441,2445],{"type":47,"tag":88,"props":2438,"children":2439},{"style":224},[2440],{"type":53,"value":2078},{"type":47,"tag":88,"props":2442,"children":2443},{"style":122},[2444],{"type":53,"value":245},{"type":47,"tag":88,"props":2446,"children":2447},{"style":111},[2448],{"type":53,"value":2087},{"type":47,"tag":88,"props":2450,"children":2451},{"class":90,"line":329},[2452,2456,2460],{"type":47,"tag":88,"props":2453,"children":2454},{"style":224},[2455],{"type":53,"value":2095},{"type":47,"tag":88,"props":2457,"children":2458},{"style":122},[2459],{"type":53,"value":245},{"type":47,"tag":88,"props":2461,"children":2462},{"style":111},[2463],{"type":53,"value":2464}," ${env.APOLLO_GRAPH_REF}\n",{"type":47,"tag":88,"props":2466,"children":2467},{"class":90,"line":342},[2468,2472],{"type":47,"tag":88,"props":2469,"children":2470},{"style":224},[2471],{"type":53,"value":1566},{"type":47,"tag":88,"props":2473,"children":2474},{"style":122},[2475],{"type":53,"value":232},{"type":47,"tag":88,"props":2477,"children":2478},{"class":90,"line":28},[2479,2483,2487,2491,2495],{"type":47,"tag":88,"props":2480,"children":2481},{"style":224},[2482],{"type":53,"value":1626},{"type":47,"tag":88,"props":2484,"children":2485},{"style":122},[2486],{"type":53,"value":245},{"type":47,"tag":88,"props":2488,"children":2489},{"style":122},[2490],{"type":53,"value":683},{"type":47,"tag":88,"props":2492,"children":2493},{"style":111},[2494],{"type":53,"value":1639},{"type":47,"tag":88,"props":2496,"children":2497},{"style":122},[2498],{"type":53,"value":1644},{"type":47,"tag":88,"props":2500,"children":2501},{"class":90,"line":368},[2502,2507],{"type":47,"tag":88,"props":2503,"children":2504},{"style":224},[2505],{"type":53,"value":2506},"health_check",{"type":47,"tag":88,"props":2508,"children":2509},{"style":122},[2510],{"type":53,"value":232},{"type":47,"tag":88,"props":2512,"children":2513},{"class":90,"line":381},[2514,2519,2523],{"type":47,"tag":88,"props":2515,"children":2516},{"style":224},[2517],{"type":53,"value":2518},"  enabled",{"type":47,"tag":88,"props":2520,"children":2521},{"style":122},[2522],{"type":53,"value":245},{"type":47,"tag":88,"props":2524,"children":2525},{"style":394},[2526],{"type":53,"value":397},{"type":47,"tag":69,"props":2528,"children":2530},{"id":2529},"docker",[2531],{"type":53,"value":2532},"Docker",{"type":47,"tag":76,"props":2534,"children":2536},{"className":204,"code":2535,"language":206,"meta":81,"style":81},"transport:\n  type: streamable_http\n  address: 0.0.0.0\n  port: 8000\nendpoint: ${env.GRAPHQL_ENDPOINT}\ngraphos:\n  apollo_key: ${env.APOLLO_KEY}\n  apollo_graph_ref: ${env.APOLLO_GRAPH_REF}\nhealth_check:\n  enabled: true\n",[2537],{"type":47,"tag":84,"props":2538,"children":2539},{"__ignoreMap":81},[2540,2551,2566,2583,2600,2616,2627,2642,2657,2668],{"type":47,"tag":88,"props":2541,"children":2542},{"class":90,"line":91},[2543,2547],{"type":47,"tag":88,"props":2544,"children":2545},{"style":224},[2546],{"type":53,"value":227},{"type":47,"tag":88,"props":2548,"children":2549},{"style":122},[2550],{"type":53,"value":232},{"type":47,"tag":88,"props":2552,"children":2553},{"class":90,"line":101},[2554,2558,2562],{"type":47,"tag":88,"props":2555,"children":2556},{"style":224},[2557],{"type":53,"value":240},{"type":47,"tag":88,"props":2559,"children":2560},{"style":122},[2561],{"type":53,"value":245},{"type":47,"tag":88,"props":2563,"children":2564},{"style":111},[2565],{"type":53,"value":250},{"type":47,"tag":88,"props":2567,"children":2568},{"class":90,"line":133},[2569,2574,2578],{"type":47,"tag":88,"props":2570,"children":2571},{"style":224},[2572],{"type":53,"value":2573},"  address",{"type":47,"tag":88,"props":2575,"children":2576},{"style":122},[2577],{"type":53,"value":245},{"type":47,"tag":88,"props":2579,"children":2580},{"style":667},[2581],{"type":53,"value":2582}," 0.0.0.0\n",{"type":47,"tag":88,"props":2584,"children":2585},{"class":90,"line":143},[2586,2591,2595],{"type":47,"tag":88,"props":2587,"children":2588},{"style":224},[2589],{"type":53,"value":2590},"  port",{"type":47,"tag":88,"props":2592,"children":2593},{"style":122},[2594],{"type":53,"value":245},{"type":47,"tag":88,"props":2596,"children":2597},{"style":667},[2598],{"type":53,"value":2599}," 8000\n",{"type":47,"tag":88,"props":2601,"children":2602},{"class":90,"line":152},[2603,2607,2611],{"type":47,"tag":88,"props":2604,"children":2605},{"style":224},[2606],{"type":53,"value":551},{"type":47,"tag":88,"props":2608,"children":2609},{"style":122},[2610],{"type":53,"value":245},{"type":47,"tag":88,"props":2612,"children":2613},{"style":111},[2614],{"type":53,"value":2615}," ${env.GRAPHQL_ENDPOINT}\n",{"type":47,"tag":88,"props":2617,"children":2618},{"class":90,"line":282},[2619,2623],{"type":47,"tag":88,"props":2620,"children":2621},{"style":224},[2622],{"type":53,"value":2066},{"type":47,"tag":88,"props":2624,"children":2625},{"style":122},[2626],{"type":53,"value":232},{"type":47,"tag":88,"props":2628,"children":2629},{"class":90,"line":300},[2630,2634,2638],{"type":47,"tag":88,"props":2631,"children":2632},{"style":224},[2633],{"type":53,"value":2078},{"type":47,"tag":88,"props":2635,"children":2636},{"style":122},[2637],{"type":53,"value":245},{"type":47,"tag":88,"props":2639,"children":2640},{"style":111},[2641],{"type":53,"value":2087},{"type":47,"tag":88,"props":2643,"children":2644},{"class":90,"line":313},[2645,2649,2653],{"type":47,"tag":88,"props":2646,"children":2647},{"style":224},[2648],{"type":53,"value":2095},{"type":47,"tag":88,"props":2650,"children":2651},{"style":122},[2652],{"type":53,"value":245},{"type":47,"tag":88,"props":2654,"children":2655},{"style":111},[2656],{"type":53,"value":2464},{"type":47,"tag":88,"props":2658,"children":2659},{"class":90,"line":329},[2660,2664],{"type":47,"tag":88,"props":2661,"children":2662},{"style":224},[2663],{"type":53,"value":2506},{"type":47,"tag":88,"props":2665,"children":2666},{"style":122},[2667],{"type":53,"value":232},{"type":47,"tag":88,"props":2669,"children":2670},{"class":90,"line":342},[2671,2675,2679],{"type":47,"tag":88,"props":2672,"children":2673},{"style":224},[2674],{"type":53,"value":2518},{"type":47,"tag":88,"props":2676,"children":2677},{"style":122},[2678],{"type":53,"value":245},{"type":47,"tag":88,"props":2680,"children":2681},{"style":394},[2682],{"type":53,"value":397},{"type":47,"tag":62,"props":2684,"children":2686},{"id":2685},"ground-rules",[2687],{"type":53,"value":2688},"Ground Rules",{"type":47,"tag":1493,"props":2690,"children":2691},{},[2692,2697,2718,2723,2728,2733,2738],{"type":47,"tag":1497,"props":2693,"children":2694},{},[2695],{"type":53,"value":2696},"ALWAYS configure authentication before exposing to AI agents",{"type":47,"tag":1497,"props":2698,"children":2699},{},[2700,2702,2708,2710,2716],{"type":53,"value":2701},"ALWAYS use ",{"type":47,"tag":84,"props":2703,"children":2705},{"className":2704},[],[2706],{"type":53,"value":2707},"mutation_mode: explicit",{"type":53,"value":2709}," or ",{"type":47,"tag":84,"props":2711,"children":2713},{"className":2712},[],[2714],{"type":53,"value":2715},"mutation_mode: none",{"type":53,"value":2717}," in shared environments",{"type":47,"tag":1497,"props":2719,"children":2720},{},[2721],{"type":53,"value":2722},"NEVER expose introspection tools with write access to production data",{"type":47,"tag":1497,"props":2724,"children":2725},{},[2726],{"type":53,"value":2727},"PREFER operation files over ad-hoc execute for predictable behavior",{"type":47,"tag":1497,"props":2729,"children":2730},{},[2731],{"type":53,"value":2732},"PREFER streamable_http transport for remote and multi-client deployments",{"type":47,"tag":1497,"props":2734,"children":2735},{},[2736],{"type":53,"value":2737},"USE stdio only when the MCP client launches the server process directly",{"type":47,"tag":1497,"props":2739,"children":2740},{},[2741],{"type":53,"value":2742},"USE GraphOS Studio collections for team collaboration",{"type":47,"tag":2744,"props":2745,"children":2746},"style",{},[2747],{"type":53,"value":2748},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2750,"total":413},[2751,2766,2779,2792,2813,2828,2835,2848,2863,2879,2889,2900],{"slug":2752,"name":2752,"fn":2753,"description":2754,"org":2755,"tags":2756,"stars":24,"repoUrl":25,"updatedAt":2765},"apollo-client","build React apps with Apollo Client","Guide for building React applications with Apollo Client 4.x. Use this skill when: (1) setting up Apollo Client in a React project, (2) writing GraphQL queries or mutations with hooks, (3) configuring caching or cache policies, (4) managing local state with reactive variables, (5) troubleshooting Apollo Client errors or performance issues.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2757,2758,2761,2762],{"name":9,"slug":8,"type":16},{"name":2759,"slug":2760,"type":16},"Frontend","frontend",{"name":14,"slug":15,"type":16},{"name":2763,"slug":2764,"type":16},"React","react","2026-04-06T18:01:12.268638",{"slug":2767,"name":2767,"fn":2768,"description":2769,"org":2770,"tags":2771,"stars":24,"repoUrl":25,"updatedAt":2778},"apollo-connectors","integrate REST APIs with Apollo Connectors","Guide for integrating REST APIs into GraphQL supergraphs using Apollo Connectors with @source and @connect directives. Use this skill when the user: (1) mentions \"connectors\", \"Apollo Connectors\", or \"REST Connector\", (2) wants to integrate a REST API into GraphQL, (3) references @source or @connect directives, (4) works with files containing \"# Note to AI Friends: This is an Apollo Connectors schema\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2772,2773,2774,2775],{"name":22,"slug":23,"type":16},{"name":9,"slug":8,"type":16},{"name":14,"slug":15,"type":16},{"name":2776,"slug":2777,"type":16},"REST API","rest-api","2026-04-06T18:01:23.758345",{"slug":2780,"name":2780,"fn":2781,"description":2782,"org":2783,"tags":2784,"stars":24,"repoUrl":25,"updatedAt":2791},"apollo-federation","author Apollo Federation subgraph schemas","Guide for authoring Apollo Federation subgraph schemas. Use this skill when: (1) creating new subgraph schemas for a federated supergraph, (2) defining or modifying entities with @key, (3) sharing types\u002Ffields across subgraphs with @shareable, (4) working with federation directives (@external, @requires, @provides, @override, @inaccessible), (5) troubleshooting composition errors, (6) any task involving federation schema design patterns.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2785,2786,2787,2790],{"name":22,"slug":23,"type":16},{"name":9,"slug":8,"type":16},{"name":2788,"slug":2789,"type":16},"Architecture","architecture",{"name":14,"slug":15,"type":16},"2026-07-30T05:31:51.648593",{"slug":2793,"name":2793,"fn":2794,"description":2795,"org":2796,"tags":2797,"stars":24,"repoUrl":25,"updatedAt":2812},"apollo-ios","build Apple apps with Apollo iOS","Guide for building Apple-platform applications with Apollo iOS, the strongly-typed GraphQL client for Swift. Use this skill when: (1) adding Apollo iOS to a Swift Package Manager or Xcode project, (2) configuring `apollo-codegen-config.json` and running code generation, (3) configuring an `ApolloClient` with auth, interceptors, and caching, (4) writing queries, mutations, or subscriptions from SwiftUI views, (5) writing tests against generated operation mocks.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2798,2799,2800,2803,2806,2809],{"name":9,"slug":8,"type":16},{"name":14,"slug":15,"type":16},{"name":2801,"slug":2802,"type":16},"iOS","ios",{"name":2804,"slug":2805,"type":16},"Mobile","mobile",{"name":2807,"slug":2808,"type":16},"Swift","swift",{"name":2810,"slug":2811,"type":16},"Xcode","xcode","2026-04-29T05:35:21.329969",{"slug":2814,"name":2814,"fn":2815,"description":2816,"org":2817,"tags":2818,"stars":24,"repoUrl":25,"updatedAt":2827},"apollo-kotlin","build Kotlin apps with Apollo GraphQL","Guide for building applications with Apollo Kotlin, the GraphQL client library for Android and Kotlin. Use this skill when: (1) setting up Apollo Kotlin in a Gradle project for Android, Kotlin\u002FJVM, or KMP, (2) configuring schema download and codegen for GraphQL services, (3) configuring an `ApolloClient` with auth, interceptors, and caching, (4) writing queries, mutations, or subscriptions,\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2819,2822,2823,2824],{"name":2820,"slug":2821,"type":16},"Android","android",{"name":9,"slug":8,"type":16},{"name":14,"slug":15,"type":16},{"name":2825,"slug":2826,"type":16},"Kotlin","kotlin","2026-04-06T18:01:15.005978",{"slug":4,"name":4,"fn":5,"description":6,"org":2829,"tags":2830,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2831,2832,2833,2834],{"name":22,"slug":23,"type":16},{"name":9,"slug":8,"type":16},{"name":14,"slug":15,"type":16},{"name":19,"slug":20,"type":16},{"slug":2836,"name":2836,"fn":2837,"description":2838,"org":2839,"tags":2840,"stars":24,"repoUrl":25,"updatedAt":2847},"apollo-router","configure Apollo Router for GraphQL federation","Version-aware guide for configuring and running Apollo Router for federated GraphQL supergraphs. Generates correct YAML for both Router v1.x and v2.x. Use this skill when: (1) setting up Apollo Router to run a supergraph, (2) configuring routing, headers, or CORS, (3) implementing custom plugins (Rhai scripts or coprocessors), (4) configuring telemetry (tracing, metrics, logging), (5) troubleshooting Router performance or connectivity issues, (6) securing the graph with JWT, declarative field-level authorization directives, or persisted-query safelisting, (7) managing router.yaml as version-controlled config with CI\u002FCD validation.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2841,2842,2843,2846],{"name":9,"slug":8,"type":16},{"name":2788,"slug":2789,"type":16},{"name":2844,"slug":2845,"type":16},"Deployment","deployment",{"name":14,"slug":15,"type":16},"2026-07-30T05:31:54.665938",{"slug":2849,"name":2849,"fn":2850,"description":2851,"org":2852,"tags":2853,"stars":24,"repoUrl":25,"updatedAt":2862},"apollo-router-plugin-creator","write Apollo Router Rust plugins","Guide for writing Apollo Router native Rust plugins. Use this skill when: (1) users want to create a new router plugin, (2) users want to add service hooks (router_service, supergraph_service, execution_service, subgraph_service), (3) users want to modify an existing router plugin, (4) users need to understand router plugin patterns or the request lifecycle. (5) triggers on requests like \"create a new plugin\", \"add a router plugin\", \"modify the X plugin\", or \"add subgraph_service hook\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2854,2855,2856,2859],{"name":9,"slug":8,"type":16},{"name":14,"slug":15,"type":16},{"name":2857,"slug":2858,"type":16},"Plugin Development","plugin-development",{"name":2860,"slug":2861,"type":16},"Rust","rust","2026-04-06T18:01:27.176974",{"slug":2864,"name":2864,"fn":2865,"description":2866,"org":2867,"tags":2868,"stars":24,"repoUrl":25,"updatedAt":2878},"apollo-server","build GraphQL servers with Apollo Server","Guide for building GraphQL servers with Apollo Server 5.x. Use this skill when: (1) setting up a new Apollo Server project, (2) writing resolvers or defining GraphQL schemas, (3) implementing authentication or authorization, (4) creating plugins or custom data sources, (5) troubleshooting Apollo Server errors or performance issues.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2869,2870,2871,2872,2875],{"name":22,"slug":23,"type":16},{"name":9,"slug":8,"type":16},{"name":14,"slug":15,"type":16},{"name":2873,"slug":2874,"type":16},"Node.js","nodejs",{"name":2876,"slug":2877,"type":16},"TypeScript","typescript","2026-04-06T18:01:13.653038",{"slug":2880,"name":2880,"fn":2881,"description":2882,"org":2883,"tags":2884,"stars":24,"repoUrl":25,"updatedAt":2888},"graphql-operations","write GraphQL queries and mutations","Guide for writing GraphQL operations (queries, mutations, fragments) following best practices. Use this skill when: (1) writing GraphQL queries or mutations, (2) organizing operations with fragments, (3) optimizing data fetching patterns, (4) setting up type generation or linting, (5) reviewing operations for efficiency.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2885,2886,2887],{"name":22,"slug":23,"type":16},{"name":9,"slug":8,"type":16},{"name":14,"slug":15,"type":16},"2026-04-06T18:01:25.530906",{"slug":2890,"name":2890,"fn":2891,"description":2892,"org":2893,"tags":2894,"stars":24,"repoUrl":25,"updatedAt":2899},"graphql-schema","design GraphQL schemas","Guide for designing GraphQL schemas following industry best practices. Use this skill when: (1) designing a new GraphQL schema or API, (2) reviewing existing schema for improvements, (3) deciding on type structures or nullability, (4) implementing pagination or error patterns, (5) ensuring security in schema design.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2895,2896,2897,2898],{"name":22,"slug":23,"type":16},{"name":9,"slug":8,"type":16},{"name":2788,"slug":2789,"type":16},{"name":14,"slug":15,"type":16},"2026-04-06T18:01:19.140592",{"slug":2901,"name":2901,"fn":2902,"description":2903,"org":2904,"tags":2905,"stars":24,"repoUrl":25,"updatedAt":2911},"rover","manage GraphQL schemas with Apollo Rover","Guide for using Apollo Rover CLI to manage GraphQL schemas and federation. Use this skill when: (1) publishing or fetching subgraph\u002Fgraph schemas, (2) composing supergraph schemas locally or via GraphOS, (3) running local supergraph development with rover dev, (4) validating schemas with check and lint commands, (5) configuring Rover authentication and environment, (6) exploring or searching a graph's schema for agent-driven discovery (rover schema describe \u002F rover schema search).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2906,2907,2910],{"name":9,"slug":8,"type":16},{"name":2908,"slug":2909,"type":16},"CLI","cli",{"name":14,"slug":15,"type":16},"2026-07-30T05:31:52.675547",{"items":2913,"total":400},[2914,2921,2928,2935,2944,2951,2958],{"slug":2752,"name":2752,"fn":2753,"description":2754,"org":2915,"tags":2916,"stars":24,"repoUrl":25,"updatedAt":2765},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2917,2918,2919,2920],{"name":9,"slug":8,"type":16},{"name":2759,"slug":2760,"type":16},{"name":14,"slug":15,"type":16},{"name":2763,"slug":2764,"type":16},{"slug":2767,"name":2767,"fn":2768,"description":2769,"org":2922,"tags":2923,"stars":24,"repoUrl":25,"updatedAt":2778},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2924,2925,2926,2927],{"name":22,"slug":23,"type":16},{"name":9,"slug":8,"type":16},{"name":14,"slug":15,"type":16},{"name":2776,"slug":2777,"type":16},{"slug":2780,"name":2780,"fn":2781,"description":2782,"org":2929,"tags":2930,"stars":24,"repoUrl":25,"updatedAt":2791},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2931,2932,2933,2934],{"name":22,"slug":23,"type":16},{"name":9,"slug":8,"type":16},{"name":2788,"slug":2789,"type":16},{"name":14,"slug":15,"type":16},{"slug":2793,"name":2793,"fn":2794,"description":2795,"org":2936,"tags":2937,"stars":24,"repoUrl":25,"updatedAt":2812},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2938,2939,2940,2941,2942,2943],{"name":9,"slug":8,"type":16},{"name":14,"slug":15,"type":16},{"name":2801,"slug":2802,"type":16},{"name":2804,"slug":2805,"type":16},{"name":2807,"slug":2808,"type":16},{"name":2810,"slug":2811,"type":16},{"slug":2814,"name":2814,"fn":2815,"description":2816,"org":2945,"tags":2946,"stars":24,"repoUrl":25,"updatedAt":2827},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2947,2948,2949,2950],{"name":2820,"slug":2821,"type":16},{"name":9,"slug":8,"type":16},{"name":14,"slug":15,"type":16},{"name":2825,"slug":2826,"type":16},{"slug":4,"name":4,"fn":5,"description":6,"org":2952,"tags":2953,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2954,2955,2956,2957],{"name":22,"slug":23,"type":16},{"name":9,"slug":8,"type":16},{"name":14,"slug":15,"type":16},{"name":19,"slug":20,"type":16},{"slug":2836,"name":2836,"fn":2837,"description":2838,"org":2959,"tags":2960,"stars":24,"repoUrl":25,"updatedAt":2847},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2961,2962,2963,2964],{"name":9,"slug":8,"type":16},{"name":2788,"slug":2789,"type":16},{"name":2844,"slug":2845,"type":16},{"name":14,"slug":15,"type":16}]