AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Fireberry Crm Mcp Server

mcp-fireberry-crm-mcp-server · by fireberry-crm

MCP server from fireberry-crm/mcp-server.

No reviews yet
0 installs
31 views
0.0% view→install

Install

$ agentstack add mcp-fireberry-crm-mcp-server

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-fireberry-crm-mcp-server)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Fireberry Crm Mcp Server? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Fireberry CRM MCP Server

A powerful Model Context Protocol (MCP) server for seamless AI-CRM integration

[](https://modelcontextprotocol.io) [](https://opensource.org/licenses/MIT) [](https://badge.fury.io/js/%40fireberry%2Fmcp-server)

Connect your AI assistants directly to Fireberry CRM with secure, real-time access to your customer data. Perform complex CRM operations through natural language interactions.

Quick Start

1. Get Your API Token

Generate your Fireberry API token following the authentication guide.

2. Install & Configure

Choose your preferred runtime:

Node.js (Recommended)

Add to your MCP configuration file:

{
    "mcpServers": {
        "fireberry-crm": {
            "command": "npx",
            "args": ["-y", "@fireberry/mcp-server@latest"],
            "env": {
                "FIREBERRY_TOKEN_ID": ""
            }
        }
    }
}
Bun
{
    "mcpServers": {
        "fireberry-crm": {
            "command": "bunx",
            "args": ["@fireberry/mcp-server@latest"],
            "env": {
                "FIREBERRY_TOKEN_ID": ""
            }
        }
    }
}

3. Tool-Specific Setup

Claude Desktop

Update claude_desktop_config.json from MCP official docs:

{
    "mcpServers": {
        "fireberry-crm": {
            "command": "npx",
            "args": ["-y", "@fireberry/mcp-server@latest"],
            "env": {
                "FIREBERRY_TOKEN_ID": ""
            }
        }
    }
}

VS Code (GitHub Copilot)

Add to .vscode/settings.json:

{
    "github.copilot.advanced": {
        "mcpServers": {
            "fireberry-crm": {
                "command": "npx",
                "args": ["-y", "@fireberry/mcp-server@latest"],
                "env": {
                    "FIREBERRY_TOKEN_ID": ""
                }
            }
        }
    }
}

Cursor

Navigate to Settings → MCP Servers and add:

{
    "fireberry-crm": {
        "command": "npx",
        "args": ["-y", "@fireberry/mcp-server@latest"],
        "env": {
            "FIREBERRY_TOKEN_ID": ""
        }
    }
}

Features

🔍 Metadata & Discovery

  • metadata_objects — List all available CRM object types
  • metadata_fields — Get field definitions for any object type
  • metadata_picklist — Retrieve picklist values and options

🏗️ Schema Management

  • object_create — Create new custom objects
  • field_create — Add custom fields to existing objects

📝 Record Operations

  • record_create — Create new records for any object type
  • record_update — Update existing records with new values

Usage Examples

Once configured, try these natural language prompts:

Exploring Your Fireberry platform

"What object types are available in my Fireberry CRM?"
"Show me all fields for the Contacts object"
"List the picklist values for the Account Status field"

Data Operations

"Create a new custom object called 'Projects' with description, and status fields"
"Add a 'Project Budget' currency field to the Projects object"
"Create a new project record called 'Q1 Digital Transformation'"
"Import this contacts.csv file into my CRM"

Configuration

Environment Variables

| Variable | Required | Description | | -------------------- | -------- | ------------------------ | | FIREBERRY_TOKEN_ID | ✅ | Your Fireberry API token |

Security

  • 🔐 All requests authenticated with your Fireberry API token
  • 🔑 Token validation on startup

Troubleshooting

Common Issues

Server not starting?

  • Verify your FIREBERRY_TOKEN_ID is correct
  • Check that Node.js/Bun is properly installed
  • Ensure network connectivity to api.fireberry.com

Tools not appearing?

  • Restart your AI assistant after configuration
  • Verify JSON syntax in configuration files
  • Check MCP server logs for error messages

Development Setup

git clone https://github.com/fireberry/mcp-server
cd mcp-server
npm install
npm run dev

License

MIT License - see [LICENSE](LICENSE.md) file for details.


Made with ❤️‍🔥 by the Fireberry team

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.