reference
MCP Tools Reference
Full reference for every tool exposed over the MCP protocol — create, read, write, update, delete.
MCP Tools Reference
Chrysai exposes six tools over the MCP protocol. Your AI uses these automatically when you chat — you don't need to call them directly.
create_app
Creates a new database (called an "app") with a schema designed from your description.
Parameters:
name— app namedescription— natural language description of what to trackschema— entity definitions (auto-generated by the AI)
Example prompt: "Create a database to track my podcast episodes."
list_apps
Lists all apps in your workspace, with names, descriptions, and entity counts.
Example prompt: "What databases do I have?"
read_data
Queries records from an app. Supports filtering, sorting, and pagination.
Parameters:
appId— which app to queryentity— entity type to queryfilter— optional filter conditionslimit— max records to return
Example prompt: "Show me all books I haven't finished yet."
write_data
Creates new records in an app.
Parameters:
appId— target appentity— entity typedata— field values for the new record
Example prompt: "Add a new contact: Jane Smith, jane@example.com."
update_data
Updates one or more existing records.
Parameters:
appId— target appentity— entity typeid— record ID to updatedata— fields to update
Example prompt: "Mark my 'Atomic Habits' book as finished."
delete_data
Deletes a record permanently.
Parameters:
appId— target appentity— entity typeid— record ID to delete
Example prompt: "Remove the contact John Doe from my CRM."
Tool call limits
Each tool invocation counts as one tool call against your daily limit. See Plans & Limits for your tier's allowance.
See also