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

@ritsl-quotes/mcp-server

v1.0.5

Published

MCP Server CLI launcher for Bexio integration

Readme

@ritsl-quotes/mcp-server

A lightweight CLI launcher for the Bexio MCP server with monetization support.

Installation

# Install globally
npm install -g @ritsl-quotes/mcp-server

# Or run directly with npx
npx -y @ritsl-quotes/mcp-server API_KEY="your-api-key"

Usage

The CLI launcher requires an API key, which you can obtain from your account dashboard at ritsl-quotes.com.

Basic Usage

# Run with your API key
npx -y @ritsl-quotes/mcp-server API_KEY="your-api-key"

Custom Port

By default, the server will run on port 3000. If this port is already in use, it will automatically select an available port. You can specify a custom port:

npx -y @ritsl-quotes/mcp-server API_KEY="your-api-key" PORT=3030

Custom Backend URL

For advanced users or testing, you can specify a custom backend URL:

npx -y @ritsl-quotes/mcp-server API_KEY="your-api-key" BACKEND_URL="https://api.staging.ritsl-quotes.com"

Development and Testing

Local Testing

For development and testing purposes without a production backend:

  1. Start a local backend server:

    # In packages/backend directory
    npm run dev
  2. In a separate terminal, run the CLI with the local backend URL:

    npx -y @ritsl-quotes/mcp-server API_KEY="test-key" BACKEND_URL="http://localhost:4000"
  3. For local development on the CLI itself:

    # Make your changes
    npm run build
    # Install globally for testing
    sudo npm link
    # Test the locally linked package
    @ritsl-quotes/mcp-server API_KEY="test-key"

Configuring Claude Desktop

After installing the MCP server, you need to configure Claude Desktop to use it. Add the following to your Claude Desktop configuration file:

macOS

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "bexio": {
      "command": "npx",
      "args": [
        "-y",
        "@ritsl-quotes/mcp-server",
        "--mcp-mode",
        "API_KEY=your-api-key"
      ]
    }
  }
}

Windows

Edit %APPDATA%\Claude\claude_desktop_config.json:

{
  "mcpServers": {
    "bexio": {
      "command": "npx",
      "args": [
        "-y",
        "@ritsl-quotes/mcp-server",
        "--mcp-mode",
        "API_KEY=your-api-key"
      ]
    }
  }
}

Important Notes About Claude Desktop Integration

When using the --mcp-mode flag, the MCP server operates in a special mode that communicates directly with Claude Desktop using the JSON-RPC protocol. This mode:

  1. Handles all communication through stdin/stdout in proper JSON-RPC format
  2. Formats log messages as valid JSON-RPC objects
  3. Supports the Model Context Protocol (MCP) standard

If you encounter any issues with Claude Desktop integration:

  1. Make sure you've included the --mcp-mode flag in your configuration
  2. Restart Claude Desktop after making configuration changes
  3. Check Claude Desktop logs for any errors

Troubleshooting

  • API Key Issues: Make sure your API key is valid and has not expired.
  • Port Conflicts: If you see errors about the port being in use, try specifying a different port or let the server find an available one automatically.
  • Connection Issues: Check your internet connection and make sure you can reach the backend server.
  • Debug Mode: To see more detailed logs, run with the DEBUG environment variable:
    DEBUG=1 npx -y @ritsl-quotes/mcp-server API_KEY="your-api-key"

Support

For support, contact [email protected] or visit our help center at help.ritsl-quotes.com.

License

© ritsl-quotes. All rights reserved.