Schema Linker
Agent skill: skills/SKILL.md
Spec: spec/schema_linking.md
Schema Linker discovers how tables relate in an existing database and emits a compact, LLM-ready Markdown report of declared PK/FK joins plus inferred join candidates with evidence labels. Useful for text-to-SQL, multi-table query authoring, and join-path debugging. Supports SQLite, PostgreSQL, MySQL, MariaDB, and DuckDB. Requires Python >= 3.10.
It writes one Markdown report per schema at <db_name>/<schema>_schema_links.md (for example app/main_schema_links.md), where <db_name> is the database or file name without its directory or extension. Use --output to change the directory.
AI agents and text-to-SQL pipelines can read this context instead of guessing join paths.
Quick Start
Install with pip:
pip install schema-linker
Or run instantly with uvx (no install needed):
uvx schema-linker --db-type mysql --user user --password password --database db --schema sch --port 3306
This creates a report at db/sch_schema_links.md.
The output directory defaults to the database name (<db_name>/). For SQLite/DuckDB the schema is main, so --database path/to/app.sqlite writes app/main_schema_links.md. Override the directory with --output. See What The Output Contains for what's inside.
What The Output Contains
The schema links .md file contains:
- Declared primary-key and foreign-key links from database constraints. Omitted by default to save tokens; include them with
--show-declared-links. - Inferred links from name, type, cardinality, and containment evidence.
- Evidence labels for each inferred join candidate. Omitted by default to save tokens; include them with
--show-evidence.
Treat inferred links as candidates, not guaranteed joins. Validate them against the user question and the table data before writing final SQL.
How It Works
Declared links are read straight from the database's primary/foreign-key constraints. For everything not already covered by an FK, Schema Linker runs a cheap-to-expensive pipeline (full details in spec/schema_linking.md):
- Metadata — skip FK-covered columns and pairs with mismatched data types.
- Cardinality — estimate
COUNT(DISTINCT col); drop near-unique free text, keep moderate, ID-like columns. - Name/type — match column names (Levenshtein-style similarity) to find strong candidates worth a spot-check.
- Containment — extract distinct values only for the survivors (capped by
--max-distinct-values), then use MinHash + LSH Ensemble to find one-way set containment (this handles unequal cardinalities, unlike Jaccard). - Verify — confirm each candidate with an exact containment check and require at least three independent pieces of evidence. Columns above the cap are verified with an exact SQL containment, and pairs of boolean/flag columns (Y/N, 0/1) are dropped as cross-product traps.
A link survives only when name, type, cardinality, and containment agree — which is why evidence is reported per signal.
Sample Output
This is the real report produced by the runnable example below (a tiny SQLite shop database). By default the Declared PK/FK Links section is omitted to save tokens:
# Schema Links
- version: 0.0.1
- dialect: sqlite
- database: examples/shop.sqlite
- schema: main
## Inferred Links
### customers.customer_id
- inferred: support_tickets.customer_id
- declared: orders.customer_id
Add --show-declared-links to prepend the declared section at the top:
## Declared PK/FK Links
order_lines.order_id -> orders.order_id
orders.customer_id -> customers.customer_id
- Declared PK/FK Links come straight from database constraints — the safe, guaranteed joins. Declared links are always used to group the inferred links below; the section itself is optional.
- Inferred Links are grouped by shared value domain. Under each anchor,
inferred:lists new join candidates anddeclared:lists columns already covered by a foreign key (shown for context). - Identifiers are copy-pasteable SQL: each
table.columnlabel is quoted only when the name requires it, using the dialect's standard quote character — double quotes for PostgreSQL, Oracle, SQLite, and DuckDB; backticks for MySQL, MariaDB, and BigQuery; square brackets for SQL Server.
Here support_tickets.customer_id is flagged as a likely join onto customers.customer_id even though there is no FK constraint — exactly the case text-to-SQL agents usually have to guess.
Add --show-evidence to see the signal behind each candidate (real output from the same database):
### customers.customer_id
- inferred:
- support_tickets.customer_id: minhash containment candidate, moderate ID-like cardinality, name match, shared name tokens, similar names, type match
- declared: orders.customer_id
Evidence labels report the why (name match, table-name id match, shared name tokens, similar names, type match, minhash containment candidate, exact SQL containment) and the confidence (same distinct count, similar distinct counts, low cardinality, moderate cardinality, moderate ID-like cardinality). exact SQL containment marks links verified in the database rather than against the in-memory value sample — typically columns with more distinct values than --max-distinct-values.
Runnable Example
Reproduce the output above against a seedable SQLite database in examples/:
# 1. build examples/shop.sqlite (customers, orders, order_lines, support_tickets)
python examples/seed_shop.py
# 2. link it; --output examples writes examples/main_schema_links.md
schema-linker --db-type sqlite --database examples/shop.sqlite --output examples
cat examples/main_schema_links.md
The fixture deliberately leaves support_tickets.customer_id without a foreign key, so inference — not the catalog — surfaces that join. Re-run with schema-linker ... --show-evidence to see the evidence labels above.
Database Examples
SQLite
schema-linker --db-type sqlite --database path/to/app.sqlite
PostgreSQL
schema-linker --db-type postgres --database app_db --schema sch --user readonly_user --host localhost --port 5432 --ask-password
MySQL
schema-linker --db-type mysql --database app_db --user readonly_user --host localhost --port 3306 --ask-password
MariaDB
schema-linker --db-type mariadb --database app_db --user readonly_user --host localhost --port 3306 --ask-password
DuckDB
schema-linker --db-type duckdb --database warehouse.duckdb --schema sch
Environment Variables
Connection values can come from environment variables instead of flags:
SCHEMA_LINKER_DB_TYPE=sqlite \
SCHEMA_LINKER_DATABASE=path/to/app.sqlite \
schema-linker
Supported variables:
SCHEMA_LINKER_DB_TYPESCHEMA_LINKER_DATABASESCHEMA_LINKER_DB_HOSTSCHEMA_LINKER_DB_PORTSCHEMA_LINKER_DB_USERSCHEMA_LINKER_DB_PASSWORDSCHEMA_LINKER_SCHEMA
For server databases, --host defaults to localhost, --port defaults to the database default, and Schema Linker securely prompts for a password when SCHEMA_LINKER_DB_PASSWORD is not set.
Help
schema-linker -h
Table filters:
schema-linker --db-type sqlite --database app.sqlite --include-tables users,orders,line_items
schema-linker --db-type sqlite --database app.sqlite --exclude-tables audit_log,temp_imports
Schema filter:
schema-linker --db-type postgres --database app_db --schema reporting --user readonly_user --port 5432 --ask-password
Options:
--include-tables table_a,table_b: only inspect selected tables.--exclude-tables table_c: skip selected tables.--include-technical-tables: link migration/framework tables that are skipped by default.--containment-threshold 0.8: minimum exact containment for inferred links.--max-distinct-values 10000: maximum distinct values loaded per candidate column.--show-evidence: include evidence labels on inferred links (off by default to save tokens).--show-declared-links: include the Declared PK/FK Links section (off by default to save tokens; declared links are still used to group inferred links).
Python API
Use the lower-level API when you already have a SQLAlchemy engine or need options:
from sqlalchemy import create_engine
from schema_linker import SchemaLinkOptions, link_schema
engine = create_engine("sqlite:///path/to/app.sqlite")
schema_links_md = link_schema(
engine,
SchemaLinkOptions(containment_threshold=0.9),
)
License
The Schema Linker source code is licensed under the MIT License. See LICENCE.
Third-party Python dependencies remain under their own upstream licenses. See THIRD_PARTY_NOTICES.md for a dependency license summary.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file schema_linker-0.0.3.tar.gz.
File metadata
- Download URL: schema_linker-0.0.3.tar.gz
- Upload date:
- Size: 94.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.7.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
280dcfa7cb68526b1d5a175c7ab6bbcf0102319abe1cb4ed504e08a217bdf893
|
|
| MD5 |
ce3bf731f2d25a6e9ea17da496c14b3e
|
|
| BLAKE2b-256 |
6e9c385943d508e11fcfa393809ca60c8280dbda6ae20d4f7b607e5e2804ec3c
|
File details
Details for the file schema_linker-0.0.3-py3-none-any.whl.
File metadata
- Download URL: schema_linker-0.0.3-py3-none-any.whl
- Upload date:
- Size: 30.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
uv/0.7.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3126032e0f8f4a0d45ee976c0fa4912a4b67c6a9c15c0cba38b1ffdcf1aba619
|
|
| MD5 |
ab52aecf3d48e11cc0befe7196ba0ac4
|
|
| BLAKE2b-256 |
3e1a17f15d5194973c965afbe1593a3eeafd28b0e432b8f51191e617ed4eee81
|