Peliqan
About
Data platform with ETL and built-in data warehouse, access all business applications (ERP, CRM, Accounting etc.) via MCP and run queries on your business data.
Details
- Author
- peliqan-io
- Downloads
- 426
- Categories
- Other, Search
Jump to
- Exposes MCP tools defined in Peliqan API handler scripts.
- Configurable via JSON file or environment variables.
- Custom API endpoint at route /mcp with method POST.
- Works out‑of‑the‑box with Claude Desktop.
- Provides MCP templates in Peliqan to get started quickly.
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
PeliqanCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install the package with pip install mcp-server-peliqan, then configure your Peliqan account ID and API token either in a peliqan_config.json file in your home folder or as environment variables peliqan_account_id and peliqan_api_token. Add the server to Claude Desktop’s configuration file and set up a custom API endpoint in Peliqan pointing to an API handler script that contains your MCP methods.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"peliqan": {
"peliqan": {
"command": "python",
"args": [
"-m",
"mcp_server_peliqan"
],
"env": {
"peliqan_account_id": "1234",
"peliqan_api_token": "xxx"
}
}
}
}
}
McpServers
{
"peliqan": {
"command": "python",
"args": [
"-m",
"mcp_server_peliqan"
],
"env": {
"peliqan_account_id": "1234",
"peliqan_api_token": "xxx"
}
}
}
Peliqan MCP Server
For more info, visit https://peliqan.io/mcp.
Configuration
Set up the connection to your Peliqan acount.
Create a configuration file named peliqan_config.json in your home folder:
{
"account_id": 1234,
"api_token": "xxx"
}
Or add the environment variables:
- account_id
- api_token
Installation
pip install mcp-server-peliqan
Usage with Claude Desktop
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"peliqan": {
"command": "python",
"args": [
"-m",
"mcp_server_peliqan"
],
"env": {
"peliqan_account_id": "1234",
"peliqan_api_token": "xxx"
}
}
}
}
Location on Windows: $env:AppData\Claude\claude_desktop_config.json
Location on Mac: ~/Library/Application\ Support/Claude/claude_desktop_config.json
Setup in Peliqan
1. Add an API handler script, that exposes one or more MCP methods (tools). See the "MCP" templates in Peliqan to get started.
2. Add a custom API endpoint in your Peliqan account with route /mcp and method POST, and link it to the API handler script.
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



