Troubleshooting Guide
Audience: Reseller support engineers triaging issues at a customer site before escalating.
Reseller lens
Run these checks first; they resolve the majority of customer reports without engineering escalation. Each row points at the deeper doc for follow-up.
First-five checks
Service up?
docker ps --filter name=vconicHealth OK?
curl http://<host>:3000/api/v1/healthVersion known?
curl -I http://<host>:3000/api/v1/health→ recordX-Version+X-Git-CommitDB reachable? Logs show no Supabase connection errors on startup
Auth working? A request with a valid
API_KEYSentry returns 200
Symptom triage
Container exits immediately
Missing SUPABASE_URL or SUPABASE_ANON_KEY
docker logs vconic and check env vars
503 on every REST call
API_AUTH_REQUIRED=true with empty API_KEYS
Set API_KEYS or API_AUTH_REQUIRED=false
401 from authenticated client
Wrong API_KEY_HEADER or missing Bearer prefix
Confirm client uses Authorization: Bearer <key> (default)
MCP tools menu is empty
MCP_TOOLS_PROFILE too restrictive or MCP_DISABLED_CATEGORIES set
Remove overrides, restart, retry
tools/list works but search_vcons_semantic returns nothing
No OPENAI_API_KEY or embeddings not backfilled
Set the key; run npm run sync:embeddings
Empty results in search_vcons for tenant user
RLS misconfigured or tenant id missing
search_vcons_content very slow on first call
Cold full-text index, expected behavior on large corpora
Allow up to 120s steady-state; cache warms after first run
add_attachment rejects encoding: "json"
Known quirk of older Python client; not a server bug
analysis.schema_version rejected
Spec field is schema, not schema_version
Fix client payload
Migrations fail mid-run
Missing SUPABASE_DB_URL permission or running against wrong DB
Verify URL; back up before retry
pgvector missing
Self-hosted Supabase without the extension installed
Enable vector extension in the database
Diagnostic commands
Escalation checklist
When opening an internal escalation, include:
X-VersionandX-Git-Commitfrom the health endpointLast 200 lines of error-level logs (
level >= 40)Output of
get_database_shapefrom an MCP clientCustomer's transport mode (
stdiovshttp) and whether RLS is onWhether the issue started after a recent upgrade or env change
See also
Last updated