Best used with an AI agent

40+ live apps, open data APIs, MCP servers, and 200+ guides - more than anyone wants to click through. Point your AI here and it reads the whole map and does the work: finds the tool, pulls the data, runs the analysis, and hands you the links.

Here for the open-source code? Your agent finds the right repo for you - and can even clone and deploy it.

Prefer to explore on your own? Go right ahead.

Paste this to Claude Code, Codex, or any AI agent:
Go to tigzig.com and read tigzig.com/llms.txt. It is a practitioner toolkit - 40+ analytics apps, open no-auth data APIs, MCP servers, open-source repos (github.com/amararun), and 200+ build guides. Help me [your task]. Surface the exact links; where there is an API or MCP, call it directly; and if I want to self-host, find the repo and help me deploy it.

Connect ChatGPT to Multiple Remote Databases

Published: October 12, 2025

Video thumbnail

(Supabase, Neon, Aiven, AWS... doesn't matter)

The Problem

Databases scattered across providers. Different engines. Different tables.

Users don't care. They just want an answer.

GPT needs to know where to go.

The Setup (my stack)

  1. FastAPI connector - takes SQL, routes to right DB, handles auth.
  2. Function calling schema - OpenAPI JSON so GPT knows where to send queries.
  3. YAML semantic layer - schema, sample rows, rules, golden queries.
  4. Custom instructions - routing rules + answer format.

How it Runs

  1. User asks.
  2. GPT picks DB + builds SQL.
  3. Query sent to FastAPI.
  4. FastAPI checks auth → DB runs query.
  5. DB → FastAPI → JSON → GPT replies.

Try It Live

ChatGPT Share Link

Works across Supabase (ODI cricket), Neon (T20 cricket), Aiven (Tour de France). Approx. 2.5M rows, 340MB data, 7.5k matches across past approx. 22 years + 122 years of Tour history.

Security

IT world has been doing it for decades - API keys, read-only roles, rate limits, role based access, row level security etc. Nothing new. Setup as per your requirements. GPT is just another frontend (OAuth enabled by the way)

Source + Docs