F
Fastly MCP Server
Read-only MCP server exposing 30 tools for inspecting and auditing Fastly's management API from LLM agents.
Share:
About
Read-only MCP server exposing 30 tools for inspecting and auditing Fastly's management API from LLM agents.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Fastly MCP Server.
- What is the Fastly MCP Server's primary function?
- The Fastly MCP Server provides read-only access to 30 tools for inspecting and auditing Fastly's management API. It enables LLM agents to retrieve configuration details and audit settings on Fastly services.
- How can I install the Fastly MCP Server with an MCP client like Cline?
- To install, clone the repository from https://github.com/aartintelligent/claude-mcp-fastly. Follow the client-specific instructions for adding a local MCP server, typically involving pointing the client to the server's executable or configuration file.
- Does the Fastly MCP Server require an API key or other credentials?
- No, the Fastly MCP Server uses a 'none' authentication type for its transport. However, the underlying Fastly Management API typically requires an API token for access, which would be configured within the LLM agent using the tools.
- What kind of tools does this MCP server expose?
- It exposes 30 read-only tools designed for inspecting and auditing Fastly's management API. These tools allow agents to query service configurations, domain settings, and other audit-related information.
- Is there any cost associated with using the Fastly MCP Server?
- The Fastly MCP Server itself is open source and available at no direct cost from its GitHub repository. However, usage of Fastly's underlying management API may incur costs based on your Fastly service plan.
- What is a key limitation of the Fastly MCP Server?
- A key limitation is its read-only nature; it cannot make changes to your Fastly services. It is strictly designed for inspection and auditing tasks, not for configuration modifications.
Install Fastly MCP Server
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"fastly-mcp-server": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fastly-mcp-server"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"fastly-mcp-server": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fastly-mcp-server"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"fastly-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fastly-mcp-server"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.