InstantDB
Create, manage, and update applications on InstantDB, the modern Firebase.
https://instantdb.run.tools
How to connect
-
Smithery (hosted)
1. Open https://smithery.ai/servers/instantdb 2. Click Connect and complete OAuth in your MCP client (Claude, Cursor, VS Code, etc.) 3. MCP endpoint: https://instantdb.run.tools
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