ChatBI MCP Server logo

ChatBI MCP Server

by enteve

ChatBI MCP Server integrates ChatBI abilities using the Model Context Protocol. It allows you to connect ChatBI to applications that support MCP.

View on GitHub

Last updated: N/A

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"
      }
    }
  }
}