Firefly
Official
Firefly MCP 服务器
Firefly MCP(模型上下文协议)服务器是一个基于 TypeScript 的服务器,可与 Firefly 平台无缝集成。它允许您跨连接到 Firefly 的云和 SaaS 帐户发现、管理和编码资源。
特征
🔍 资源发现:查找您的云和 SaaS 帐户中的任何资源
📝 资源编码:将已发现的资源转换为基础设施即代码
🔐 安全认证:使用 FIREFLY_ACCESS_KEY 和 FIREFLY_SECRET_KEY 进行安全通信
🚀 轻松集成:与 Claude 和 Cursor 无缝协作
Related MCP server: OpenAPI Client Generator MCP
先决条件
Node.js(v14 或更高版本)
npm 或 yarn
带有生成访问密钥的 Firefly 帐户
安装
您可以使用 NPX 直接运行 Firefly MCP 服务器:
npx @fireflyai/firefly-mcp环境变量
您可以通过两种方式提供 Firefly 凭证:
使用环境变量:
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用法
标准输入输出系统
使用以下内容更新mcp.json文件:
{
"mcpServers": {
"firefly": {
"command": "npx",
"args": ["-y", "@fireflyai/firefly-mcp"],
"env": {
"FIREFLY_ACCESS_KEY": "your_access_key",
"FIREFLY_SECRET_KEY": "your_secret_key"
}
}
}
}使用上述方法之一通过以下命令运行 MCP 服务器:
npx @fireflyai/firefly-mcp --sse --port 6001使用以下内容更新mcp.json文件:
{
"mcpServers": {
"firefly": {
"url": "http://localhost:6001/sse"
}
}
}与游标一起使用
使用上述方法之一启动 MCP 服务器
使用 Cursor 扩展连接到 MCP 服务器 - 请参阅Cursor Model Context Protocol 文档
使用自然语言查询您的资源
例子:
迅速的
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)打开拉取请求
执照
该项目根据 MIT 许可证获得许可 - 有关详细信息,请参阅LICENSE文件。
支持
如需支持,请访问Firefly 的文档或在此存储库中创建问题。
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityNot gradedmaintenanceA TypeScript-based MCP server that connects to FHIR servers, allowing access to healthcare data via fhir:// URIs and providing search capabilities for FHIR resources.65
- -licenseAqualityNot gradedmaintenanceA TypeScript-based MCP server that generates API clients from OpenAPI specifications, allowing automated code generation through natural language.1441
- AlicenseNot gradedqualityDmaintenanceAn MCP server that enables LLMs to understand and work with TypeScript APIs they haven't been trained on by providing structured access to TypeScript type definitions and documentation.3046MIT
- AlicenseAqualityDmaintenanceA TypeScript-based MCP server that integrates with Swagger/OpenAPI specifications to expose API endpoints as tools for Large Language Models (LLMs), enabling natural language interaction with any OpenAPI-compliant API.49MIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for secureFlows: token-free URL builders and integration-linting tools for AI agents.
The Figma MCP server brings Figma design context directly into your AI workflow.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gofireflyio/firefly-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server