- Rhombus MCP Server
Rhombus MCP Server
Rhombus MCP Server
An MCP server implementation that integrates the Rhombus API to provide Chatbot tools.
Configuration
Step 1: Get a Rhombus API Key
- Sign up for a Rhombus Account.
- Create an API Key at API Key Settings
- Set the API key in your environment as
RHOMBUS_API_KEY.
Step 2: Configure Claude Desktop
-
Download Claude desktop here.
-
Add this to your
claude_desktop_config.json:
DOCKER
{
"mcpServers": {
"rhombus": {
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "RHOMBUS_API_KEY", "mcp-server-rhombus"],
"env": {
"RHOMBUS_API_KEY": "YOUR_API_KEY"
}
}
}
}
NPX
{
"mcpServers": {
"rhombus": {
"command": "npx",
"args": ["-y", "server-rhombus"],
"env": {
"RHOMBUS_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
You can access the file using:
vim ~/Library/Application\ Support/Claude/claude_desktop_config.json
Step 3: Testing
Let's make sure Claude for Desktop is picking up the tools we've exposed in our rhombus server. You can do this by looking for the hammer icon.
After clicking on the hammer icon, you should see the tools that come with the Filesystem MCP Server:
If you see both of these this means that the integration is active. Congratulations! This means Claude can now ask Rhombus questions. You can then simply use it as you would use the Rhombus web app.
Troubleshooting
The Claude documentation provides an excellent troubleshooting guide you can refer to. However, you can still reach out to us at api@rhombus.com for any additional support or file a bug.
License
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.