chatbi-mcp-server

enteve/chatbi-mcp-server

3.1

If you are the rightful owner of chatbi-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

ChatBI MCP Server is a Model Context Protocol server that integrates ChatBI capabilities for enhanced data interaction.

ChatBI MCP Server

This is a Model Context Protocol (MCP) server that integrates ChatBI abilities.

Installation

To use ChatBI MCP Server, you need to install it via npm, get domain url and token from ChatBI system, and configure it in your favorite app that supports MCP.

Clone the repository

git clone https://github.com/enteve/chatbi-mcp-server.git

Install the dependencies

npm install

Build the server

npm run build

Configure Claude

  • Open Claude Desktop Settings via +, (don't confuse with Claude Account Settings)
  • Go to Developer sidebar section
  • Click Edit Config and open claude_desktop_config.json file
  • Add chatbi server inside mcpServers dictionary in the config file
  • Restart the app
{
  "mcpServers": {
    "chatbi": {
      "command": "node",
      "args": ["/path/to/chatbi-mcp-server/dist/index.js"],
      "env": {
        "CHATBI_DOMAIN": "https://example.com",
        "CHATBI_TOKEN": "token"
      }
    }
  }
}