Full-Text Search Sync is a data workflow that chains Meilisearch + Supabase to automate a common task. Keep Meilisearch in sync with your Supabase tables. Inserts, updates, and deletes are reflected in the search index in real time. Once configured, it saves ~6 hours/week of re-index ops, plus elimination of nightly batch jobs and their failures and runs through Claude Code, Cursor, Windsurf or any MCP-compatible AI agent.
Keep Meilisearch in sync with your Supabase tables. Inserts, updates, and deletes are reflected in the search index in real time.
Hosted execution needs every MCP on the whitelist. Use the local CLI for this recipe until the missing MCPs are added.
Not yet hostable:
mcpizy recipe install meilisearch-supabase-fulltext-syncSupabase is your source of truth for structured data; Meilisearch provides the typo-tolerant, millisecond full-text search your users expect. Connecting them via Realtime means your search index is always accurate — no batch re-indexing jobs, no stale results.
Run a nightly re-index job. Search results are up to 24 hours stale. Users search for something you added this morning and find nothing.
Every Supabase change syncs to Meilisearch within seconds. Search always reflects the current state of your data.
Concrete ROI — not marketing fluff.
Time saved
~6 hours/week of re-index ops, plus elimination of nightly batch jobs and their failures
This prompt is the workflow. Paste into Claude Code, Cursor, or Windsurf.
You are a search-index sync agent. Subscribes to Supabase Realtime for configured tables. Setup: read sync-config.yaml (table → meilisearch_index → transform_fn). On each realtime event: 1. INSERT: transform row → meilisearch.add_documents(index, [doc]) with primary_key 2. UPDATE: meilisearch.update_documents(index, [doc]) — partial update of changed fields only 3. DELETE: meilisearch.delete_document(index, primary_key) If Meilisearch returns 4xx/5xx: - Buffer failed ops to Supabase table sync_queue with retry_after timestamp - Retry every 60s with exponential backoff (max 10 retries) Weekly reconciliation: call supabase.execute_sql to get row counts per table, compare with meilisearch.get_stats(index). If drift > 0.5%, trigger full re-index.
How this workflow fires and what env vars you need.
Supabase Realtime: postgres_changes on configured tables (INSERT, UPDATE, DELETE)
MEILISEARCH_HOSTMeilisearch server URL
e.g. https://ms-xyz.meilisearch.io
Install everything — MCPs, prompt, env template — in a single call.
$ mcpizy recipe install meilisearch-supabase-fulltext-sync ✓ Installs all 2 MCP servers ✓ Writes prompt to ~/.mcpizy/prompts/meilisearch-supabase-fulltext-sync.md ✓ Generates .env.example in current directory ✓ Ready to paste into Claude Code
Requires mcpizy CLI v1.1+ — install via npm i -g mcpizy.
$ mcpizy install meilisearch && mcpizy install supabaseSchedule a Firecrawl scrape of any website and store the structured results directly in a Supabase table for analysis.
Run Tavily searches on scheduled topics and index the results in Supabase for trend analysis and content research.
When a Supabase row changes, the corresponding Redis cache key is automatically invalidated to keep your API fresh.
Parse your GitHub repos and build a Neo4j knowledge graph of files, functions, imports, and authors for code intelligence.
Full-Text Search Sync is a data automation that uses Meilisearch + Supabase together via the Model Context Protocol. Keep Meilisearch in sync with your Supabase tables. Inserts, updates, and deletes are reflected in the search index in real time.
Setup takes around 15 min setup, real-time search sync. You install the required MCP servers with `mcpizy install meilisearch && mcpizy install supabase`, connect your accounts, and the workflow is ready to run.
Once running, this workflow saves ~6 hours/week of re-index ops, plus elimination of nightly batch jobs and their failures. The concrete business value: Removes 'why can't I find what I just posted?' bug reports — search trust stays high, retention improves; E-commerce: new inventory is searchable instantly — captures impulse purchases that stale indexes lose.
You need 2 MCP servers: Meilisearch (mcpizy install meilisearch), Supabase (mcpizy install supabase). All are installable in one command via the MCPizy CLI and configured in your `.claude.json` or `.cursor/mcp.json`.
Yes. The workflow runs with any MCP-compatible AI agent — Claude Code, Claude Desktop, Cursor, Windsurf, VS Code with Copilot, and custom agents built on the MCP SDK. The MCP servers are identical across clients; only the config file path (`.claude.json` vs `.cursor/mcp.json`) changes.
Install the required MCPs from the marketplace and automate this in 15 min setup.
$ mcpizy install meilisearch && mcpizy install supabase
Free to install. Connect your accounts and this workflow runs itself.