Description

Provides access to Qlik Sense Enterprise APIs through both Repository API (REST) and Engine API (WebSocket) endpoints, enabling AI assistants to interact with Qlik Sense applications, data models, and analytics objects. Built by Stanislav Chernov, it supports certificate-based authentication and offers tools for managing apps, users, streams, and tasks through the Repository API, while the Engine API enables direct data extraction, hypercube creation, field analysis, and script access. The server is particularly valuable for business intelligence workflows where users need to query Qlik Sense data models, analyze application metadata, extract table data, or automate reload tasks without manually navigating the Qlik interface.

Installation

npx -y qlik-sense-mcp-server
npm install qlik-sense-mcp-server
git clone https://github.com/bintocher/qlik-sense-mcp

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "qlik-sense": {
      "command": "npx",
      "args": [
        "-y",
        "qlik-sense-mcp-server"
      ]
    }
  }
}