{"id":26722569,"url":"https://github.com/gofireflyio/firefly-mcp","last_synced_at":"2025-06-27T07:34:36.338Z","repository":{"id":284582771,"uuid":"954695818","full_name":"gofireflyio/firefly-mcp","owner":"gofireflyio","description":"Firefly MCP","archived":false,"fork":false,"pushed_at":"2025-05-18T13:10:24.000Z","size":158,"stargazers_count":8,"open_issues_count":3,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-06-20T00:58:00.314Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gofireflyio.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-03-25T13:30:45.000Z","updated_at":"2025-06-16T08:04:07.000Z","dependencies_parsed_at":"2025-03-26T16:39:54.231Z","dependency_job_id":"ebd7db93-c8bd-429d-9d9e-2f84edf66d27","html_url":"https://github.com/gofireflyio/firefly-mcp","commit_stats":null,"previous_names":["gofireflyio/firefly-mcp"],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/gofireflyio/firefly-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofireflyio%2Ffirefly-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofireflyio%2Ffirefly-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofireflyio%2Ffirefly-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofireflyio%2Ffirefly-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gofireflyio","download_url":"https://codeload.github.com/gofireflyio/firefly-mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofireflyio%2Ffirefly-mcp/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262212989,"owners_count":23276027,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-27T20:26:27.368Z","updated_at":"2025-06-27T07:34:36.288Z","avatar_url":"https://github.com/gofireflyio.png","language":"TypeScript","funding_links":[],"categories":["CI/CD \u0026 DevOps Pipelines","Cloud \u0026 DevOps MCP Servers","پیاده‌سازی‌های سرور","Table of Contents","🛠️ DevOps Tooling","🌐 Web Development"],"sub_categories":["🔄 DevOps Visibility","💻 \u003ca name=\"developer-tools\"\u003e\u003c/a\u003eابزارهای توسعه‌دهنده","System Automation"],"readme":"[![Firefly](https://infralight-templates-public.s3.amazonaws.com/company-logos/firefly_logo_white.png)](https://firefly.ai)\n\n# Firefly MCP Server\n\nThe 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.\n\n## Features\n\n- 🔍 Resource Discovery: Find any resource in your Cloud and SaaS accounts\n- 📝 Resource Codification: Convert discovered resources into Infrastructure as Code\n- 🔐 Secure Authentication: Uses FIREFLY_ACCESS_KEY and FIREFLY_SECRET_KEY for secure communication\n- 🚀 Easy Integration: Works seamlessly with Claude and Cursor\n\n## Prerequisites\n\n- Node.js (v14 or higher)\n- npm or yarn\n- Firefly account with generated access keys\n\n## Installation\n\nYou can run the Firefly MCP server directly using NPX:\n\n```bash\nnpx @fireflyai/firefly-mcp\n```\n\n### Environment Variables\n\nYou can provide your Firefly credentials in two ways:\n\n1. Using environment variables:\n```bash\nFIREFLY_ACCESS_KEY=your_access_key FIREFLY_SECRET_KEY=your_secret_key npx @fireflyai/firefly-mcp\n```\n\n2. Using arguments:\n```bash\nnpx @fireflyai/firefly-mcp --access-key your_access_key --secret-key your_secret_key\n```\n\n## Usage\n\n### Stdio\n\nUpdate the `mcp.json` file with the following:  \n```bash\n{\n  \"mcpServers\": {\n    \"firefly\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@fireflyai/firefly-mcp\"],\n      \"env\": {\n        \"FIREFLY_ACCESS_KEY\": \"your_access_key\",\n        \"FIREFLY_SECRET_KEY\": \"your_secret_key\"\n      }\n    }\n  }\n}\n```\n\nRun the MCP server using one of the methods above with the following command:\n```bash\nnpx @fireflyai/firefly-mcp --sse --port 6001\n```\n\nUpdate the `mcp.json` file with the following:\n```bash\n{\n  \"mcpServers\": {\n    \"firefly\": {\n      \"url\": \"http://localhost:6001/sse\"\n    }\n  }\n}\n```\n\n### Using with Cursor\n\n1. Start the MCP server using one of the methods above\n2. Use the Cursor extension to connect to the MCP server - see [Cursor Model Context Protocol documentation](https://docs.cursor.com/context/model-context-protocol)\n3. Use natural language to query your resources\n\n#### Example:\n\n##### Prompt \n```\nFind all \"ubuntu-prod\" EC2 instance in 123456789012 AWS account and codify it into Terraform\n```\n\n##### Response\n```\nresource \"aws_instance\" \"ubuntu-prod\" {\n  ami           = \"ami-0c55b159cbfafe1f0\"\n  instance_type = \"t3.micro\"\n}\n```\n\n## Demo\n\nhttps://github.com/user-attachments/assets/0986dff5-d433-4d82-9564-876b8215b61e\n\n## Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'feat: Add amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Support\n\nFor support, please visit [Firefly's documentation](https://docs.firefly.ai/firefly-docs) or create an issue in this repository.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgofireflyio%2Ffirefly-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgofireflyio%2Ffirefly-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgofireflyio%2Ffirefly-mcp/lists"}