← Back to Plugins
MCP Server MCP

Apollo MCP Server

github By github 👁 1 views ▲ 0 votes

MCP server that exposes GraphQL operations as tools for AI models.

Homepage Verified source GitHub

Install

oci:ghcr.io/apollographql/apollo-mcp-server:v1.17.0

Configuration Example

{
  "remotes": [],
  "packages": [
    {
      "registryType": "oci",
      "identifier": "ghcr.io/apollographql/apollo-mcp-server:v1.17.0",
      "transport": {
        "type": "stdio"
      },
      "runtimeArguments": [
        {
          "description": "Mount your config file into the container",
          "isRequired": true,
          "value": "type=bind,src={config_path},dst=/config.yaml,readonly",
          "variables": {
            "config_path": {
              "description": "Path to your Apollo MCP Server configuration file on the host",
              "isRequired": true,
              "format": "filepath"
            }
          },
          "type": "named",
          "name": "--mount"
        },
        {
          "description": "Mount your project data directory into the container (for local schema and operations)",
          "value": "type=bind,src={data_path},dst=/data",
          "variables": {
            "data_path": {
              "description": "Path to your project directory containing schema and operation files",
              "isRequired": true,
              "format": "filepath"
            }
          },
          "type": "named",
          "name": "--mount"
        },
        {
          "description": "Expose the HTTP Streamable transport port",
          "value": "8000:8000",
          "type": "named",
          "name": "-p"
        }
      ],
      "packageArguments": [
        {
          "value": "/config.yaml",
          "type": "positional"
        }
      ]
    }
  ]
}
mcp model-context-protocol oci

Comments

Sign in to leave a comment

Loading comments...