mcp-server-template
Verified Safeby apollographql
Overview
This template provides a starting point for deploying the Apollo MCP Server, enabling schema introspection and structured access to GraphQL operations for AI assistants and tools.
Installation
docker run -it --env APOLLO_KEY=your-key --env APOLLO_GRAPH_REF=your-graph-ref -p 5000:5000 apollo-mcp-serverEnvironment Variables
- APOLLO_KEY
- APOLLO_GRAPH_REF
Security Notes
The template includes development-friendly defaults that are not production-ready, specifically with introspection tools (Introspect, Search, Validate, Execute) enabled by default. The 'Execute' tool allows arbitrary GraphQL operations against the backend, posing a significant security risk if deployed to production without proper authentication, authorization, and configuration changes. The README explicitly warns about this.
Similar Servers
apollo-mcp-server
Exposes GraphQL APIs as Model Context Protocol (MCP) tools, enabling AI models to access, orchestrate, and interact with APIs through standardized protocols.
tmcp
A server implementation for the Model Context Protocol (MCP) to enable LLMs to access external context and tools.
openapi-mcp-server
Converts OpenAPI specifications into Model Context Protocol (MCP) tools, enabling AI assistants to interact with APIs.
mcp-go-starter
A feature-complete Model Context Protocol (MCP) server template in Go demonstrating tools, resources, and prompts for AI agent interaction.