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 🙏

© 2025 – Pkg Stats / Ryan Hefner

caramelo-mcp-server

v1.2.0

Published

MCP server for Caramelo.dev API

Readme

Caramelo.dev MCP Server

This is an MCP (Model Context Protocol) server implementation for Caramelo.dev API. It allows AI assistants like Claude and Cursor to interact with your Caramelo.dev application using the MCP protocol.

Quick Start

The easiest way to use the Caramelo.dev MCP server is via NPX - no installation required!

Get Your API Token

  1. Go to your Caramelo.dev settings
  2. Generate an MCP API token
  3. Copy the token (it starts with user_ or org_)

Add to Your MCP Client

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "caramelo": {
      "command": "npx",
      "args": ["caramelo-mcp-server", "--token", "YOUR_TOKEN_HERE"]
    }
  }
}

Cursor

Add to your ~/.cursor/mcp.json:

{
  "caramelo": {
    "command": "npx", 
    "args": ["caramelo-mcp-server", "--token", "YOUR_TOKEN_HERE"]
  }
}

VS Code

Add to your .vscode/mcp.json:

{
  "mcpServers": {
    "caramelo": {
      "command": "npx",
      "args": ["caramelo-mcp-server", "--token", "YOUR_TOKEN_HERE"]
    }
  }
}

Development Usage

If you're developing with a local Caramelo.dev instance, specify a custom URL:

{
  "caramelo-dev": {
    "command": "npx",
    "args": [
      "caramelo-mcp-server",
      "--token", "YOUR_TOKEN_HERE",
      "--url", "https://your-ngrok-url.ngrok-free.app/mcp"
    ]
  }
}

Cloudflare Access Protected Environments

If your Caramelo.dev instance is protected by Cloudflare Access, you can provide the required credentials via environment variables:

{
  "caramelo-staging": {
    "command": "npx",
    "args": [
      "caramelo-mcp-server",
      "--token", "YOUR_TOKEN_HERE",
      "--url", "https://staging.caramelo.dev/mcp"
    ],
    "env": {
      "CF_ACCESS_CLIENT_ID": "your-client-id.access",
      "CF_ACCESS_CLIENT_SECRET": "your-client-secret"
    }
  }
}

The server will automatically include the CF-Access-Client-Id and CF-Access-Client-Secret headers when both environment variables are present. If either is missing, the headers will be omitted (allowing the server to work with non-CF-protected endpoints).

Available Tools

The MCP server provides access to:

  • list_repositories - List all repositories you have access to
  • list_available_tools - List all available MCP tools

Local Development

If you want to run the server locally for development:

cd mcp_client
npm install
npm run build

# Test production mode
node dist/index.js --token your_token_here

# Test development mode  
node dist/index.js --token your_token_here --url http://localhost:3000/mcp