{
  "info": {
    "name": "Builder.io — mcp.ai",
    "description": "REST API for the Builder.io 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/builder_io",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "builder_io_create_content_entry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/content/entry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "content",
            "entry"
          ]
        },
        "description": "Create a draft, published, or archived entry in an existing Builder.io model. New entries default to draft and trigger configured webhooks unless trigger_webhooks is false.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data\": {},\n  \"name\": \"\",\n  \"published\": \"\",\n  \"targeting\": \"\",\n  \"model_name\": \"\",\n  \"trigger_webhooks\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "builder_io_delete_content_entry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/content/entry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "content",
            "entry"
          ]
        },
        "description": "Delete one Builder.io content entry by model name and entry ID. Builder's Content API is CDN-cached, so reads may briefly return stale content after a successful deletion. Configured webhooks run unle",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"entry_id\": \"\",\n  \"model_name\": \"\",\n  \"trigger_webhooks\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "builder_io_get_content_entry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/content/entry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "content",
            "entry"
          ]
        },
        "description": "Retrieve one content entry by model name and entry ID from the connected Builder.io Space. Set cachebust only for a one-off freshness check because normal Content API reads use Builder's CDN cache.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"enrich\": false,\n  \"entry_id\": \"\",\n  \"cachebust\": false,\n  \"model_name\": \"\",\n  \"include_unpublished\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "builder_io_get_space_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/space/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "space",
            "details"
          ]
        },
        "description": "Return the authenticated Builder.io Space ID and its read-only settings.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "builder_io_list_assets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/assets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "assets"
          ]
        },
        "description": "List, filter, and sort assets in the connected Builder.io Space without modifying the Asset Library. Returns one offset-controlled page at a time.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": {},\n  \"limit\": 0,\n  \"query\": {},\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "builder_io_list_content_entries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/content/entries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "content",
            "entries"
          ]
        },
        "description": "List and filter content entries from any model in the connected Builder.io Space, one offset-controlled page at a time.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"omit\": \"\",\n  \"sort\": {},\n  \"limit\": 0,\n  \"query\": {},\n  \"enrich\": false,\n  \"fields\": \"\",\n  \"model_name\": \"\",\n  \"next_cursor\": \"\",\n  \"include_refs\": false,\n  \"no_targeting\": false,\n  \"user_attributes\": {},\n  \"include_unpublished\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "builder_io_list_content_folders",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/content/folders",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "content",
            "folders"
          ]
        },
        "description": "List the content folders configured in the connected Builder.io Space.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "builder_io_list_models",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/models",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "models"
          ]
        },
        "description": "List the content models in the connected Builder.io Space, optionally including each model's field schema for content discovery.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"include_fields\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "builder_io_list_space_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/space/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "space",
            "users"
          ]
        },
        "description": "List users and roles with access to the connected Builder.io Space.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "builder_io_update_content_entry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/content/entry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "content",
            "entry"
          ]
        },
        "description": "Partially update an existing Builder.io content entry. Omitted top-level fields remain unchanged, but a supplied data object replaces the existing data object rather than recursively merging with it. ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data\": {},\n  \"name\": \"\",\n  \"entry_id\": \"\",\n  \"published\": \"\",\n  \"targeting\": \"\",\n  \"model_name\": \"\",\n  \"trigger_webhooks\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}