An MCP server to run qlik
What is jwaxman19 qlik mcp
Qlik MCP Server
MCP Server for the Qlik Cloud API, enabling Claude to interact with Qlik applications and extract data from visualizations.
Tools
qlik_get_apps
List all Qlik applications available in the workspace
- Optional inputs:
limit
(number, default: 100): Maximum number of apps to returnoffset
(string): Pagination offset for next page
- Returns: List of applications with their IDs and information
qlik_get_app_sheets
Get all sheets in a Qlik application
- Optional inputs:
app_id
(string): The ID of the Qlik application (defaults to QLIK_APP_ID env variable)
- Returns: List of sheets with their IDs, titles, and metadata
qlik_get_sheet_charts
Get all charts in a specific sheet
- Required inputs:
sheet_id
(string): The ID of the sheet to get charts from
- Optional inputs:
app_id
(string): The ID of the Qlik application (defaults to QLIK_APP_ID env variable)
- Returns: List of charts with their IDs, types, and positions
qlik_get_chart_data
Get data from a specific chart
- Required inputs:
sheet_id
(string): The ID of the sheet containing the chartchart_id
(string): The ID of the chart to get data from
- Optional inputs:
app_id
(string): The ID of the Qlik application (defaults to QLIK_APP_ID env variable)max_rows
(number, default: 10000): Maximum total rows to retrievepage_size
(number, default: 1000): Number of rows per requestinclude_metadata
(boolean, default: true): Include chart metadata in response
- Returns: Chart data with headers, rows, and optional metadata
Setup
Create a Qlik Cloud API Key:
- Log in to your Qlik Cloud tenant
- Navigate to Settings > API keys
- Create a new API key with appropriate access
- Save the API key securely
Configure Environment:
Create a .env
file with your Qlik Cloud credentials (see .env.example
for a template):
QLIK_API_KEY=your_api_key_here
QLIK_BASE_URL=your_tenant_url
QLIK_APP_ID=your_default_app_id
MAX_ROWS_PER_REQUEST=1000
MAX_TOTAL_ROWS=10000
REQUEST_DELAY_MS=100
MAX_RETRIES=3
RETRY_DELAY_MS=1000
Usage with Docker
You can also run this MCP server using Docker:
# Build the Docker image
docker build -t qlik-mcp .
# Run the container
# Make sure to create a .env file first (copy from .env.example)
docker run --env-file .env qlik-mcp
Usage with Claude Desktop
Add the following to your claude_desktop_config.json
:
Using Deno (Recommended)
{
"mcpServers": {
"qlik": {
```json
"command": "/path/to/deno"
```,
"args": ["run", "--allow-all", "--env-file=.env", "src/index.ts"],
"cwd": "/path/to/qlik-mcp"
}
}
}
Using Node.js
{
"mcpServers": {
"qlik": {
"command": "npx",
"args": ["tsx", "src/index.ts"],
"env": {
"QLIK_API_KEY": "your_api_key_here",
"QLIK_BASE_URL": "your_tenant_url",
"QLIK_APP_ID": "your_default_app_id"
},
"cwd": "/path/to/qlik-mcp"
}
}
}
Usage with Cursor
- Open Cursor settings
- Navigate to the Claude configuration section
- Add a new MCP configuration:
{
"name": "Qlik Cloud",
```json
"command": "/path/to/deno"
```,
"args": ["run", "--allow-all", "--env-file=.env", "src/index.ts"],
"cwd": "/path/to/qlik-mcp"
}
Replace /path/to/deno
with your Deno installation path (usually ~/.deno
/bin/deno`` on Unix systems) and /path/to/qlik-mcp
with the absolute path to your cloned repository.
Troubleshooting
If you encounter errors, verify that:
- Your API key has the necessary permissions
- The tenant URL is correct and accessible
- The app ID exists and is accessible
- Environment variables are properly set
- Rate limiting settings are appropriate for your tenant
Common issues:
401 Unauthorized
: Check your API key403 Forbidden
: Verify API key permissions429 Too Many Requests
: Adjust rate limiting settings404 Not Found
: Verify app and sheet IDs
Development
Prerequisites
- Deno
- Node.js (optional, for IDE support)
Local Setup
# Clone repository
git clone https://github.com/jwaxman19/qlik-mcp.git
cd qlik-mcp
# Install dependencies (for IDE support)
npm install
# Run server
deno task dev
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.
📊 Data Platforms
Data Platforms for data integration, transformation and pipeline orchestration.
- JordiNei/mcp-databricks-server - Connect to Databricks API, allowing LLMs to run SQL queries, list jobs, and get job status.
- jwaxman19/qlik-mcp 📇 ☁️ - MCP Server for Qlik Cloud API that enables querying applications, sheets, and extracting data from visualizations with comprehensive authentication and rate limiting support.
- keboola/keboola-mcp-server - interact with Keboola Connection Data Platform. This server provides tools for listing and accessing data from Keboola Storage API.
Leave a Comment
Frequently Asked Questions
What is MCP?
MCP (Model Context Protocol) is an open protocol that standardizes how applications provide context to LLMs. Think of MCP like a USB-C port for AI applications, providing a standardized way to connect AI models to different data sources and tools.
What are MCP Servers?
MCP Servers are lightweight programs that expose specific capabilities through the standardized Model Context Protocol. They act as bridges between LLMs like Claude and various data sources or services, allowing secure access to files, databases, APIs, and other resources.
How do MCP Servers work?
MCP Servers follow a client-server architecture where a host application (like Claude Desktop) connects to multiple servers. Each server provides specific functionality through standardized endpoints and protocols, enabling Claude to access data and perform actions through the standardized protocol.
Are MCP Servers secure?
Yes, MCP Servers are designed with security in mind. They run locally with explicit configuration and permissions, require user approval for actions, and include built-in security features to prevent unauthorized access and ensure data privacy.
Related MCP Servers
chrisdoc hevy mcp
sylphlab pdf reader mcp
An MCP server built with Node.js/TypeScript that allows AI agents to securely read PDF files (local or URL) and extract text, metadata, or page counts. Uses pdf-parse.
aashari mcp server atlassian bitbucket
Node.js/TypeScript MCP server for Atlassian Bitbucket. Enables AI systems (LLMs) to interact with workspaces, repositories, and pull requests via tools (list, get, comment, search). Connects AI directly to version control workflows through the standard MCP interface.
aashari mcp server atlassian confluence
Node.js/TypeScript MCP server for Atlassian Confluence. Provides tools enabling AI systems (LLMs) to list/get spaces & pages (content formatted as Markdown) and search via CQL. Connects AI seamlessly to Confluence knowledge bases using the standard MCP interface.
prisma prisma
Next-generation ORM for Node.js & TypeScript | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB and CockroachDB
Zzzccs123 mcp sentry
mcp sentry for typescript sdk
zhuzhoulin dify mcp server
zhongmingyuan mcp my mac
zhixiaoqiang desktop image manager mcp
MCP 服务器,用于管理桌面图片、查看详情、压缩、移动等(完全让Trae实现)
zhixiaoqiang antd components mcp
An MCP service for Ant Design components query | 一个减少 Ant Design 组件代码生成幻觉的 MCP 服务,包含系统提示词、组件文档、API 文档、代码示例和更新日志查询
Submit Your MCP Server
Share your MCP server with the community
Submit Now