inboxassure-mcpx-dev
v1.0.2
Published
MCP connector for Bison Hello API
Maintainers
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-devAPI 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:
- Save the file
- Restart Claude desktop
- 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:
- Check the Claude logs (
%APPDATA%\Claude\logs\mcp*.logon Windows) - Make sure you have Node.js installed (version 14 or higher)
- Verify that your API key is valid and properly formatted
- Try running the package directly with
npx inboxassure-mcpx-dev --api-key=YOUR_API_KEY - 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 longServer error: Request timed out: The API server could not be reached within 10 secondsServer 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:
- Accepts MCP protocol messages from Claude
- Forwards them to the InboxAssure server
- Returns the responses back to Claude
Development Setup
- Clone the repository
- Install dependencies with
npm install - 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
