{
  "info": {
    "name": "KoboToolbox — mcp.ai",
    "description": "REST API for the KoboToolbox 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/kobotoolbox",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "kobotoolbox_create_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "project"
          ]
        },
        "description": "Create a draft survey project, optionally by cloning an existing KoboToolbox asset.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"sector\": \"\",\n  \"country\": \"\",\n  \"clone_from\": \"\",\n  \"description\": \"\",\n  \"share_metadata\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kobotoolbox_delete_export",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/export",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "export"
          ]
        },
        "description": "Delete one asynchronous export job from a KoboToolbox project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"export_uid\": \"\",\n  \"project_uid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kobotoolbox_delete_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "project"
          ]
        },
        "description": "Permanently delete one KoboToolbox project by UID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_uid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kobotoolbox_deploy_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/deploy/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "deploy",
            "project"
          ]
        },
        "description": "Deploy a draft KoboToolbox survey or redeploy its latest form version so it can accept and expose submissions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"active\": false,\n  \"project_uid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kobotoolbox_export_submissions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/export/submissions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "export",
            "submissions"
          ]
        },
        "description": "Create an asynchronous KoboToolbox submission export and wait for it to complete, returning the export UID and result URL.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": {},\n  \"fields\": \"\",\n  \"flatten\": false,\n  \"language\": \"\",\n  \"export_type\": \"\",\n  \"project_uid\": \"\",\n  \"submission_ids\": \"\",\n  \"group_separator\": \"\",\n  \"multiple_select\": \"\",\n  \"include_media_url\": false,\n  \"xls_types_as_text\": false,\n  \"hierarchy_in_labels\": false,\n  \"wait_timeout_seconds\": 0,\n  \"fields_from_all_versions\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kobotoolbox_get_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project"
          ]
        },
        "description": "Retrieve a KoboToolbox project with its form content, settings, resource URLs, and deployment state.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_uid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kobotoolbox_get_submission",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/submission",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "submission"
          ]
        },
        "description": "Retrieve one submission by integer ID, root UUID, or submission UUID from a KoboToolbox project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_uid\": \"\",\n  \"submission_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kobotoolbox_list_assets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/assets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "assets"
          ]
        },
        "description": "Find projects and other visible assets in the connected KoboToolbox account, returning one page and a continuation cursor.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"query\": \"\",\n  \"ordering\": \"\",\n  \"next_cursor\": \"\",\n  \"current_user_permissions_only\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kobotoolbox_list_submissions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/submissions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "submissions"
          ]
        },
        "description": "Read one page of submissions for a deployed KoboToolbox project, with optional field selection, filtering, and sorting.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"query\": \"\",\n  \"fields\": \"\",\n  \"next_cursor\": \"\",\n  \"project_uid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}