The Peliqan MCP (Model Context Protocol) Server lets AI assistants like Claude Code, Claude Desktop and ChatGPT talk directly to your Peliqan account. Once connected, the AI can explore your data, debug pipelines, write and run data apps, manage query tables, and call API endpoints — all without leaving your chat. Think of it as giving Claude (or any other MCP Client) a direct line into Peliqan.
mcp.eu.peliqan.iomcp.us.peliqan.ioAdd the following to your ~/.claude.json file. If the file doesn't exist yet, create it.
{
"mcpServers": {
"peliqan": {
"type": "http",
"url": "<https://mcp.eu.peliqan.io/mcp>",
"headers": {
"Authorization": "Bearer YOUR_PELIQAN_API_TOKEN"
}
}
}
}
Replace YOUR_PELIQAN_API_TOKEN with your Peliqan API token.
After saving, restart Claude Code. You should see Peliqan listed when you type /mcp in the chat.
First, make sure node, npx and mcp-remote are installed on your computer.
For Mac:
brew install node or visit https://nodejs.org/en/downloadnpx mcp-remoteFor Windows (PowerShell):
winget install OpenJS.NodeJS or visit https://nodejs.org/en/downloadnpx mcp-remote