# Softr — MCP server on mcp.ai > Connect your Softr account and use 21 tools for app builder straight from your AI agent. Connect with your own API key. Build custom apps and portals from Airtable in minutes with no-code. Softr provides user management and database APIs for building client portals, internal tools, and web applications. By: mcp.ai · official Page: https://mcp.ai/softr ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_softr?ms=1787293500000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/softr/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/softr/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/softr/skill.md Postman collection (v2.1): https://mcp.ai/softr/postman.json ## Tools - softr_create_database(name: string, description?: string, workspaceId: string) — Tool to create a new database in a Softr workspace. Use when you need to set up a new database for storing data within a specific Softr workspace. - softr_create_record(fields: object, table_id: string, database_id: string) — Creates a new record in a Softr database table. Use when you need to add new data to a specific table in your Softr database. - softr_create_table(name: string, fields: object[], database_id: string, description?: string, primary_field_name?: string) — Tool to create a new table within a specified Softr database. Use when you need to add a new data structure with custom fields to organize information. - softr_create_table_field(name: string, type: string, options?: object, tableId: string, databaseId: string) — Tool to add a new field to a Softr table. Use when you need to add a new column to an existing table, such as adding an email field, a text field, or any other field type to store additional data. - softr_delete_database(force?: boolean, database_id: string) — Tool to delete a specific database by its ID from Softr. Use when you need to remove a database. The database must be empty unless the 'force' parameter is set to true. This operation is irreversible. - softr_delete_record(table_id: string, record_id: string, database_id: string) — Tool to delete a record from a Softr database table. Use when you need to permanently remove a specific record. - softr_delete_table(force?: boolean, table_id: string, database_id: string) — Tool to delete a specific table by its ID from a database. Use when you need to remove a table. The table must be empty unless the force parameter is set to true. - softr_delete_table_field(field_id: string, table_id: string, database_id: string) — Tool to delete a field from a Softr database table. Use when you need to remove a field from a table. Returns success confirmation upon completion. - softr_get_database(database_id: string) — Tool to retrieve details for a specific database by ID. Use when you need to fetch information about a particular database in Softr. - softr_get_databases(limit?: integer, offset?: integer) — Tool to retrieve all databases available in the workspace. Use when you need to list or discover available databases for further operations. - softr_get_record(tableId: string, recordId: string, databaseId: string) — Tool to retrieve a single record by its ID from a Softr database table. Use when you need to fetch detailed information about a specific record. - softr_get_records(limit?: integer, offset?: integer, tableId: string, databaseId: string) — Tool to retrieve a paginated list of records from a Softr table. Use when you need to fetch records from a specific table with optional pagination parameters. - softr_get_table(table_id: string, database_id: string) — Tool to retrieve details for a specific table by ID. Use when you need to inspect table structure, fields, or metadata. - softr_get_table_field(fieldId: string, tableId: string, databaseId: string) — Tool to retrieve a specific field from a Softr table by field ID. Use when you need detailed configuration information about a table field, including its type, options, and metadata. - softr_get_table_views(table_id: string, database_id: string) — Tool to retrieve all views for a specified table in a Softr database. Use when you need to list or inspect available views for a table. - softr_get_tables(databaseId: string) — Retrieves all tables within a specified Softr database. Use when you need to list or explore the tables available in a database. - softr_search_records(filter?: object, paging?: object, table_id: string, database_id: string) — Tool to search records in a Softr database table with filtering and pagination. Use when you need to retrieve records from a specific table, optionally filtered by field values and paginated for large - softr_update_database(name?: string, database_id: string, description?: string) — Tool to update an existing database's name and/or description. Use when you need to modify database metadata after creation. - softr_update_record(fields: object, table_id: string, record_id: string, database_id: string) — Tool to update an existing record's field values in a Softr table. Use when you need to modify specific fields of a record by providing the database ID, table ID, record ID, and the new field values. - softr_update_table(name: string, table_id: string, database_id: string, description?: string) — Tool to update a table's name and/or description in Softr Database. Use when you need to modify table metadata. To modify fields, use the field-specific endpoints instead. - softr_update_table_field(name?: string, type: string, options: object, field_id: string, table_id: string, database_id: string) — Updates an existing field in a Softr table. Use when you need to modify a field's name, type, or configuration options. Note: The API requires both 'type' and 'options' fields even if only updating th ## Example prompts - "What can I do in Softr?" - "Show me a summary of my Softr account" ## Links Docs: https://mcp.ai/docs/mcps/softr Website: https://mcp.ai/mcps/softr