CloudFix MCP Server
Ask Claude, Cursor or Claude Desktop about your AWS savings. The CloudFix MCP server connects AI assistants to your CloudFix recommendations through the Model Context Protocol (MCP), so you can ask what CloudFix found in your AWS accounts without leaving your editor or chat. It is included with every CloudFix plan, including the free tier.
What your assistant can do
list_recommendations— the savings opportunities CloudFix has found, filterable by finder, status, AWS account, region and organizational unitget_recommendation_details— full details for a single recommendationget_recommendation_report— the detailed analysis report behind a recommendationget_recommendations_summary— recommendation counts and savings grouped by optimization typeget_ec2_price— the price of a specific EC2 instance typefind_ec2_instances— EC2 instances that match a specification
Example questions: “What are my biggest AWS savings opportunities right now?” · “Summarise my CloudFix recommendations for a leadership update.” · “Show me the details for this recommendation.”
Set it up in three steps
- In the CloudFix app, open MCP Settings and switch on Enable MCP Integration.
- Click Generate MCP Key. This mints a Reader API token that starts with
cft_. It is shown once, so copy it before closing the dialog. - Add the server to your MCP client. For Claude Code, merge this into
~/.claude.jsonor a project.mcp.json; MCP Settings also has ready-made snippets for Cursor and Claude Desktop.
{
"mcpServers": {
"cloudfix-recommendations": {
"type": "http",
"url": "https://mcp.app.cloudfix.com/mcp",
"headers": {
"Authorization": "Bearer <paste-your-cft-token-here>"
}
}
}
}
On macOS or Linux with Claude Code installed, you can use the one-line installer instead:
curl -fsSL https://app.cloudfix.com/install-mcp.sh | API_KEY=cft_<your-api-token> sh
You control what assistants can reach
MCP Settings lists every available tool. Each one can be enabled or disabled for your account, so you decide exactly which CloudFix data an AI assistant can query.
FAQ
Is the CloudFix MCP server free?
Yes. It is included with every CloudFix plan, including the free tier.
Which AI assistants work with it?
Any MCP client that supports HTTP servers. CloudFix provides ready-made configuration for Claude Code, Cursor and Claude Desktop.
What kind of key does it use?
A Reader API token (prefix cft_) generated in MCP Settings. The token is shown only once when you create it.
Can I restrict which tools are available?
Yes. Enable or disable each tool individually in MCP Settings.
What is MCP?
Model Context Protocol is an open standard that lets AI assistants call external tools and data sources. An MCP server exposes those tools; clients such as Claude and Cursor connect to it.