目录 / InstantDB
MCP
鉴权未知
未评级
已上架
InstantDB
Realtime database and sync engine. Create apps with instant data sync, manage schemas, and query collaborative data.
该来源不提供完整文件导出(国内平台多为平台内托管),仅存元数据与原链
接入信息
- 传输形态
- http
- 鉴权方式
- 鉴权未知
- 端点
https://instantdb.run.tools
鉴权方式未标注,请核对官方文档后再接入——不要直接使用以下片段
{
"mcpServers": {
"InstantDB": {
"url": "https://instantdb.run.tools"
}
}
}
能力清单
| 工具 | 说明 |
|---|---|
| learn | If you don't have any context provided about InstantDB, use this tool to learn about it! |
| get-schema | Fetch schema for an app by its ID! |
| get-perms | Fetch permissions for an app by its ID |
| push-schema | Push 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-perms | Push 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. |
| query | Execute 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 |
| transact | Execute 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": "Get fit", "done": false}]] If you're unsure how to make transactions, refer to the documentation: https://instantdb.com/docs/instaml |
纠错与举报(发现条目失效、署名有误或涉及侵权?)
提交举报 / 纠错
侵权举报经核验成立后,我们会即时下线该条目并删除已存的内容副本。