Market Standard · postgres

Catch slow queries before production does.

A DB query optimizer with an EXPLAIN visualizer, a heuristic query scorer, and configurable slow-query alerting. Paste a query, see the plan, get concrete recommendations — then wire duration thresholds to Slack and Suite Pulse.

A query scorer, not just an EXPLAIN viewer. Every query gets a 0–100 score with anti-pattern detection: SELECT *, full scans, function-on-column, NOT IN, unconstrained joins, unbounded sorts.

0–100
query score
EXPLAIN
plan visualizer
Slack
slow-query alerts
Slow query optimizer

EXPLAIN ANALYZE

SELECT * FROM events
WHERE user_id = $1
  AND ts > now() - '7d'
Seq scan · 4.2smissing idx
Index scan · 38ms+ idx(user_id, ts)
Engine
Postgres + pgvector
Fix
index suggestion
Mission

Query optimization that fits the dev loop.

Standard Lens is a DB query optimizer with an EXPLAIN plan visualizer and a heuristic query scorer. Paste a SQL query and the analyzer flags anti-patterns — SELECT *, full table scans, functions on indexed columns, NOT IN, unconstrained joins, unbounded sorts — and emits a 0–100 score plus concrete recommendations. Save queries to your library with tags and pin the hot ones. A configurable slow-query detector records anything over your threshold and alerts via Slack or Suite Pulse. Deep-link into Standard Vault for the connection string and Standard Hook for webhook payload regex.

Capabilities

Built for the workflow you already have.

01

Query score + findings

Every query gets a 0–100 score with severity-tagged findings. High-severity issues (full scans, unconstrained joins) sink the score fastest so you know where to focus.

02

EXPLAIN plan visualizer

The plan tree is rendered as a nested list with node type, relation, row estimate, and cost — so you can see Seq Scan vs Index Scan at a glance.

03

Slow query detection

Set a duration threshold per database. Anything over it is captured with the SQL text, duration, and source, then surfaced on the slow-queries dashboard.

04

Configurable alerts

Route slow-query and missed-cron alerts to a Slack channel or Suite Pulse. Thresholds are per-database so you can tune noise vs signal.

05

Saved query library

Save queries with tags and pin the hot ones. Re-run the analyzer after a schema migration to confirm the score improved before deploying.

06

Vault + Hook synergy

Deep-link into Standard Vault for the database connection string (agent-reference mode), and Standard Hook to test webhook payload regex against captured events.

How it works

Score your first query in 30 seconds.

  1. 01Open the dashboard and click 'New query'.
  2. 02Paste your SQL and pick a database label.
  3. 03Run the analyzer — see the score, findings, and plan tree.
  4. 04Apply the recommendations and re-run to confirm the score climbed.
  5. 05Save it to your library, pin the hot ones, set a slow-query threshold.
Pricing

Free to start. Pro when you need it.

Start free. Upgrade when you outgrow limits or want to remove the powered-by badge.

Free
$0

100 queries/day + 7-day slow history

Starter
$29/mo

unlimited queries + 30-day history

Growth
$99/mo

unlimited + full history + Slack alerts

Why Market Standard

Slow queries you catch before users do.

Three focused products, one portfolio. Each app is built to spread your brand while solving one job extremely well.

Open Dashboard
0–100 query score with anti-pattern detection
EXPLAIN plan tree visualizer
Configurable slow-query threshold + Slack alerts
Saved query library + Vault/Hook deep links
Compare

How Market Standard compares

FeatureSpreadsheetsGeneric SaaSMarket Standard
Market Standard
Purpose-built for the workflowNoPartialYes
Free tier with no credit cardSometimesYes
Open schema (Postgres + Drizzle)NoNoYes
Viral powered-by badge on free tierNoNoYes
Cross-sells into the rest of the suiteNoNoYes
Self-hostable source-available codeNoNoYes
FAQ

Common questions

Everything you need to know before signing up.

Is there a free tier?
Yes. Every Market Standard app ships with a usable free tier so you can validate the workflow before paying. Upgrade when you outgrow limits or want to remove the powered-by badge.
Do I need to install anything?
No. Each app is a standalone web service. Sign in with email magic link, connect your integrations, and start using the dashboard immediately.
How does the powered-by badge work?
Free-tier artifacts (poll messages, embed widgets, short-link redirects) carry a small 'Powered by Market Standard' badge. Upgrading removes the badge and unlocks higher limits.
Can I use this with the rest of the Market Standard suite?
Yes. Every app cross-links to its siblings — Standard Polls surfaces Standard Standup, Standard Metrics deep-links to Standard Links, and so on. Sign in once with the same email.
Where is my data stored?
Postgres on Supabase, encrypted at rest. Each app exposes a privacy page detailing what is stored and for how long. You can export or delete your data at any time.
Standard Lens — DB query optimizer + slow query detection by Market Standard