MindPal Integration Guide

February 3, 2026 ยท View on GitHub

This guide shows how to integrate Universal Database MCP Server with MindPal.

Overview

MindPal is a no-code AI agent builder. It supports MCP via SSE/Streamable HTTP, allowing you to query databases from your AI agents.

Prerequisites

  • MindPal account
  • Universal Database MCP Server deployed in HTTP mode
  • Database instance

Configuration

Step 1: Deploy HTTP API Server

docker run -d \
  --name universal-db-mcp \
  -p 3000:3000 \
  -e MODE=http \
  -e HTTP_PORT=3000 \
  -e API_KEYS=mindpal-secret-key \
  universal-db-mcp:latest

Step 2: Configure MindPal

  1. Open MindPal
  2. Navigate to Integrations
  3. Add MCP Server:
    • URL: https://your-server.com/mcp
    • Headers: Include database configuration

Usage

Use the database tools in your MindPal agents to query data.

Resources