gofireflyio/firefly-mcp
Firefly MCP
Platform-specific configuration:
{
"mcpServers": {
"firefly-mcp": {
"command": "npx",
"args": [
"-y",
"firefly-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
[](https://firefly.ai)
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-mcpYou can provide your Firefly credentials in two ways:
FIREFLY_ACCESS_KEY=your_access_key FIREFLY_SECRET_KEY=your_secret_key npx @fireflyai/firefly-mcpnpx @fireflyai/firefly-mcp --access-key your_access_key --secret-key your_secret_keyUpdate 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 6001Update the mcp.json file with the following:
{
"mcpServers": {
"firefly": {
"url": "http://localhost:6001/sse"
}
}
}Loading reviews...