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

inboxassure-mcpx-dev

v1.0.2

Published

MCP connector for Bison Hello API

Readme

InboxAssure MCPX Dev

A Model Context Protocol (MCP) bridge for connecting to the InboxAssure Bison Hello API. This package enables Claude to use custom tools provided by the Bison API service.

Installation

You don't need to install this package directly. Claude desktop will automatically install it using npx.

If you want to install it globally for testing:

npm install -g inboxassure-mcpx-dev

API Key

To use this package, you need a valid API key from InboxAssure.

The API key must follow this format: iak_***** (starts with "iak_" followed by a string of characters).

Contact InboxAssure support to obtain an API key if you don't have one.

Usage with Claude Desktop

Add this to your Claude desktop configuration, replacing YOUR_API_KEY with your actual API key:

{
  "mcpServers": {
    "My Bison Hello Server": {
      "command": "npx",
      "args": [
        "-y",
        "inboxassure-mcpx-dev",
        "--api-key=YOUR_API_KEY"
      ]
    }
  }
}

For Windows users, you can also use:

{
  "mcpServers": {
    "My Bison Hello Server": {
      "command": "cmd",
      "args": [
        "/c",
        "npx",
        "-y",
        "inboxassure-mcpx-dev",
        "--api-key=YOUR_API_KEY"
      ]
    }
  }
}

After adding this configuration:

  1. Save the file
  2. Restart Claude desktop
  3. You should see the Bison Hello Server tool available

Available Tools

  • get_bison_hello: Gets a greeting from the Bison Hello API.

Troubleshooting

If you encounter issues:

  1. Check the Claude logs (%APPDATA%\Claude\logs\mcp*.log on Windows)
  2. Make sure you have Node.js installed (version 14 or higher)
  3. Verify that your API key is valid and properly formatted
  4. Try running the package directly with npx inboxassure-mcpx-dev --api-key=YOUR_API_KEY
  5. Check your internet connection and ensure you can reach the InboxAssure API server

Common Error Messages

  • Invalid API key format: Make sure your API key starts with "iak_" and is sufficiently long
  • Server error: Request timed out: The API server could not be reached within 10 seconds
  • Server returned 401: Unauthorized: Your API key is invalid or expired

Development

This package acts as a bridge between Claude desktop and the InboxAssure Bison API server. It:

  1. Accepts MCP protocol messages from Claude
  2. Forwards them to the InboxAssure server
  3. Returns the responses back to Claude

Development Setup

  1. Clone the repository
  2. Install dependencies with npm install
  3. Run the bridge with npm start -- --api-key=YOUR_API_KEY

Architecture

The bridge implements the Model Context Protocol (MCP) to communicate with Claude, and uses HTTP to communicate with the InboxAssure Bison API server.

License

ISC