npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@fireberry/mcp-server

v0.1.4

Published

MCP Server for hassle-free usage of Fireberry's API.

Readme

Fireberry CRM MCP Server

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

MCP Compatible License: MIT npm version

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": "<your-token-here>"
            }
        }
    }
}

Bun

{
    "mcpServers": {
        "fireberry-crm": {
            "command": "bunx",
            "args": ["@fireberry/mcp-server@latest"],
            "env": {
                "FIREBERRY_TOKEN_ID": "<your-token-here>"
            }
        }
    }
}

3. Tool-Specific Setup

Update claude_desktop_config.json from MCP official docs:

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

Add to .vscode/settings.json:

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

Navigate to Settings → MCP Servers and add:

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

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 file for details.