{
  "info": {
    "name": "GoFile — mcp.ai",
    "description": "REST API for the GoFile 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/gofile",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "gofile_create_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "folder"
          ]
        },
        "description": "Create a private folder inside an existing GoFile folder.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder_name\": \"\",\n  \"parent_folder_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gofile_delete_contents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/contents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "contents"
          ]
        },
        "description": "Permanently and irreversibly delete one or more explicitly selected owned GoFile files or folders.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"content_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gofile_get_current_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/current/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "current",
            "account"
          ]
        },
        "description": "Return the connected GoFile account's identity, tier, root folder, usage, and content counts without exposing account credentials or network metadata.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gofile_rename_content",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/rename/content",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "rename",
            "content"
          ]
        },
        "description": "Rename one owned GoFile file or folder.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"new_name\": \"\",\n  \"content_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "gofile_upload_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "file"
          ]
        },
        "description": "Upload one file into an existing folder owned by the connected GoFile account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"folder_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}