How to connect
https://instantdb.run.tools
tools/list returns the expected tools before relying on them in production.Listing quality
Observable facts from our catalog and daily probe — not a safe-to-install badge.
- Surface
- Ready surface
- Live handshake
- Auth required
- Auth gate
- Auth gate
- Tools source
- tools/list (live)
Observable catalog + probe facts — not a safe-to-install badge.
Tools
(7)-
learnIf you don't have any context provided about InstantDB, use this tool to learn about it!
-
get-schemaFetch schema for an app by its ID!
-
get-permsFetch permissions for an app by its ID
-
push-schemaPush local schema changes for an app to the server. Do this after updating your local 'instant.schema.ts' file. If you don't have an instant.schema.ts file yet, use the get-schema tool to learn how to get this file.
-
push-permsPush local permissions changes for an app to the server. Do this after updating your local instant.perms.ts file. If you don't have an instant.perms.ts file yet, use the get-perms tool to learn how to get this file.
-
queryExecute an InstaQL query against an app. Returns the query results as JSON. Example query to fetch all goals and their todos: {"goals": {"todos": {}}} Example query with a where clause: {"goals": {"$": {"where": {"status": "active"}}, "todos": {}}} If you're unsure how to write queries, refer to the documentation: https://instantdb.com/docs/instaql
-
transactExecute a transaction against an app. Useful for creating, updating, or deleting data. Steps use the internal transaction format: - Create/update: ["update", "namespace", "entity-id", {"attr": "value"}] - Link: ["link", "namespace", "entity-id", {"linkAttr": "target-id"}] - Unlink: ["unlink", "namespace", "entity-id", {"linkAttr": "target-id"}] - Delete: ["delete", "namespace", "entity-id"] Example steps to create a todo: [["update", "todos", "a-uuid", {"title": "Ge
Tool source: tools/list (live) · last probed 2026-09-18