{
  "info": {
    "name": "Softr — mcp.ai",
    "description": "REST API for the Softr MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/softr",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "softr_create_database",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/database",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "database"
          ]
        },
        "description": "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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"description\": \"\",\n  \"workspaceId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "softr_create_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "record"
          ]
        },
        "description": "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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": {},\n  \"table_id\": \"\",\n  \"database_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "softr_create_table",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/table",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "table"
          ]
        },
        "description": "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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"fields\": \"\",\n  \"database_id\": \"\",\n  \"description\": \"\",\n  \"primary_field_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "softr_create_table_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/table/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "table",
            "field"
          ]
        },
        "description": "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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"options\": {},\n  \"tableId\": \"\",\n  \"databaseId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "softr_delete_database",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/database",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "database"
          ]
        },
        "description": "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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"force\": false,\n  \"database_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "softr_delete_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "record"
          ]
        },
        "description": "Tool to delete a record from a Softr database table. Use when you need to permanently remove a specific record.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"table_id\": \"\",\n  \"record_id\": \"\",\n  \"database_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "softr_delete_table",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/table",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "table"
          ]
        },
        "description": "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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"force\": false,\n  \"table_id\": \"\",\n  \"database_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "softr_delete_table_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/table/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "table",
            "field"
          ]
        },
        "description": "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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"field_id\": \"\",\n  \"table_id\": \"\",\n  \"database_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "softr_get_database",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/database",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "database"
          ]
        },
        "description": "Tool to retrieve details for a specific database by ID. Use when you need to fetch information about a particular database in Softr.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"database_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "softr_get_databases",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/databases",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "databases"
          ]
        },
        "description": "Tool to retrieve all databases available in the workspace. Use when you need to list or discover available databases for further operations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "softr_get_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "record"
          ]
        },
        "description": "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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tableId\": \"\",\n  \"recordId\": \"\",\n  \"databaseId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "softr_get_records",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/records",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "records"
          ]
        },
        "description": "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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"tableId\": \"\",\n  \"databaseId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "softr_get_table",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/table",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "table"
          ]
        },
        "description": "Tool to retrieve details for a specific table by ID. Use when you need to inspect table structure, fields, or metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"table_id\": \"\",\n  \"database_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "softr_get_table_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/table/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "table",
            "field"
          ]
        },
        "description": "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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fieldId\": \"\",\n  \"tableId\": \"\",\n  \"databaseId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "softr_get_table_views",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/table/views",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "table",
            "views"
          ]
        },
        "description": "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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"table_id\": \"\",\n  \"database_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "softr_get_tables",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/tables",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "tables"
          ]
        },
        "description": "Retrieves all tables within a specified Softr database. Use when you need to list or explore the tables available in a database.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"databaseId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "softr_search_records",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/records",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "records"
          ]
        },
        "description": "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",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"filter\": {},\n  \"paging\": {},\n  \"table_id\": \"\",\n  \"database_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "softr_update_database",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/database",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "database"
          ]
        },
        "description": "Tool to update an existing database's name and/or description. Use when you need to modify database metadata after creation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"database_id\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "softr_update_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "record"
          ]
        },
        "description": "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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": {},\n  \"table_id\": \"\",\n  \"record_id\": \"\",\n  \"database_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "softr_update_table",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/table",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "table"
          ]
        },
        "description": "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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"table_id\": \"\",\n  \"database_id\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "softr_update_table_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/table/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "table",
            "field"
          ]
        },
        "description": "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",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"type\": \"\",\n  \"options\": {},\n  \"field_id\": \"\",\n  \"table_id\": \"\",\n  \"database_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}