Fastly MCP Server
An MCP server generated from a comprehensive, unofficial OpenAPI spec for the Fastly API.
Categories
Building the App
Cloud / SaaS
DevOps & Platforms
Our Take
This project is a masterclass in API documentation and agent readiness. By reverse-engineering and enhancing the official Fastly API docs into a detailed OpenAPI spec, the author has created a high-quality foundation for this MCP server. It allows an agent to manage CDN configurations, caching, and security features on the Fastly platform with a rich, well-documented toolset.
Quick Start
// Run via npx in your client config, providing your Fastly API key.
{
"mcpServers": {
"fastly": {
"command": "npx",
"args": ["-y", "fastly-mcp-server@latest", "run"],
"env": {
"API_KEY_APIKEYAUTH": "your-fastly-api-key"
}
}
}
}