The Firefly MCP (Model Context Protocol) server is a TypeScript-based server that enables seamless integration with the Firefly platform. It allows you to discover, manage, and codify resources across your Cloud and SaaS accounts connected to Firefly. - ๐ Resource Discovery: Find any resource in your Cloud and SaaS accounts - ๐ Resource Codification: Convert discovered resources into Infrastruct
Add this skill
npx mdskills install gofireflyio/firefly-mcpClean MCP server with useful cloud resource discovery and IaC codification tools, good setup docs
The Firefly MCP (Model Context Protocol) server is a TypeScript-based server that enables seamless integration with the Firefly platform. It allows you to discover, manage, and codify resources across your Cloud and SaaS accounts connected to Firefly.
You can run the Firefly MCP server directly using NPX:
npx @fireflyai/firefly-mcp
You can provide your Firefly credentials in two ways:
FIREFLY_ACCESS_KEY=your_access_key FIREFLY_SECRET_KEY=your_secret_key npx @fireflyai/firefly-mcp
npx @fireflyai/firefly-mcp --access-key your_access_key --secret-key your_secret_key
Update the mcp.json file with the following:
{
"mcpServers": {
"firefly": {
"command": "npx",
"args": ["-y", "@fireflyai/firefly-mcp"],
"env": {
"FIREFLY_ACCESS_KEY": "your_access_key",
"FIREFLY_SECRET_KEY": "your_secret_key"
}
}
}
}
Run the MCP server using one of the methods above with the following command:
npx @fireflyai/firefly-mcp --sse --port 6001
Update the mcp.json file with the following:
{
"mcpServers": {
"firefly": {
"url": "http://localhost:6001/sse"
}
}
}
Find all "ubuntu-prod" EC2 instance in 123456789012 AWS account and codify it into Terraform
resource "aws_instance" "ubuntu-prod" {
ami = "ami-0c55b159cbfafe1f0"
instance_type = "t3.micro"
}
https://github.com/user-attachments/assets/0986dff5-d433-4d82-9564-876b8215b61e
git checkout -b feature/amazing-feature)git commit -m 'feat: Add amazing feature')git push origin feature/amazing-feature)This project is licensed under the MIT License - see the LICENSE file for details.
For support, please visit Firefly's documentation or create an issue in this repository.
Install via CLI
npx mdskills install gofireflyio/firefly-mcpFirefly MCP Server is a free, open-source AI agent skill. The Firefly MCP (Model Context Protocol) server is a TypeScript-based server that enables seamless integration with the Firefly platform. It allows you to discover, manage, and codify resources across your Cloud and SaaS accounts connected to Firefly. - ๐ Resource Discovery: Find any resource in your Cloud and SaaS accounts - ๐ Resource Codification: Convert discovered resources into Infrastruct
Install Firefly MCP Server with a single command:
npx mdskills install gofireflyio/firefly-mcpThis downloads the skill files into your project and your AI agent picks them up automatically.
Firefly MCP Server works with Claude Code, Claude Desktop, Cursor, Vscode Copilot, Windsurf, Continue Dev, Gemini Cli, Amp, Roo Code, Goose. Skills use the open SKILL.md format which is compatible with any AI coding agent that reads markdown instructions.