{
  "info": {
    "name": "Noloco — mcp.ai",
    "description": "REST API for the Noloco 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/noloco",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "noloco_create_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "record"
          ]
        },
        "description": "Create one record in a table in the connected Noloco app. Use NOLOCO_DESCRIBE_TABLE first to supply valid input fields and values.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"values\": {},\n  \"table_name\": \"\",\n  \"return_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "noloco_delete_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "record"
          ]
        },
        "description": "Permanently delete one record from a Noloco table by ID. This is destructive and cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"record_id\": \"\",\n  \"table_name\": \"\",\n  \"return_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "noloco_describe_table",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/describe/table",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "describe",
            "table"
          ]
        },
        "description": "Describe one Noloco table's selectable fields, unique lookup selectors, filters, and create/update inputs. Use this before record CRUD to learn the connected app's exact field names and GraphQL types.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"table_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "noloco_get_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "record"
          ]
        },
        "description": "Fetch one record from a Noloco table by a supported unique selector. Use NOLOCO_DESCRIBE_TABLE first because selectors and fields vary by app and table.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"fields\": \"\",\n  \"table_name\": \"\",\n  \"selector_field\": \"\",\n  \"selector_value\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "noloco_list_records",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/records",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "records"
          ]
        },
        "description": "Return one forward-paginated page of records from a table in the connected Noloco app. Use NOLOCO_DESCRIBE_TABLE first to choose valid fields, filters, and sort fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"first\": 0,\n  \"where\": {},\n  \"fields\": \"\",\n  \"table_name\": \"\",\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "noloco_list_tables",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/tables",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "tables"
          ]
        },
        "description": "List the record tables and generated CRUD operation names available in the connected Noloco app. Call this before using a table-specific record tool when the app schema is unknown.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "noloco_update_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "record"
          ]
        },
        "description": "Partially update one Noloco record by ID. Only supplied fields are changed; use NOLOCO_DESCRIBE_TABLE first to choose valid update fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"values\": {},\n  \"record_id\": \"\",\n  \"table_name\": \"\",\n  \"return_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}