{
  "protocolVersion": "1.0",
  "name": "Freaking Fast File Drive",
  "description": "Stores and shares files up to 200GB. Upload from disk, get a link, manage the library. For agents that need to move files too large for email, chat, or a git repository.",
  "url": "https://freakingfast.io",
  "preferredTransport": "JSONRPC",
  "version": "2026.08.8",
  "documentationUrl": "https://freakingfast.io/llms.txt",
  "provider": {
    "organization": "Absurd Technologies",
    "url": "https://freakingfast.io"
  },
  "capabilities": {
    "streaming": false,
    "pushNotifications": false,
    "stateTransitionHistory": false
  },
  "defaultInputModes": ["application/json", "text/plain"],
  "defaultOutputModes": ["application/json", "text/plain"],
  "securitySchemes": {
    "bearerAuth": {
      "type": "http",
      "scheme": "bearer",
      "description": "Freaking Fast API token. Exchanged for a short-lived session token automatically."
    }
  },
  "security": [{ "bearerAuth": [] }],
  "skills": [
    {
      "id": "upload-file",
      "name": "Upload a large file",
      "description": "Store a file up to 200GB and return a shareable download link. Handles video, datasets, archives, database dumps, and build artifacts that exceed email and chat limits.",
      "tags": ["file-transfer", "upload", "storage", "sharing", "large-files"],
      "examples": [
        "Send this 4GB video to someone",
        "Host this dataset somewhere I can link to",
        "This file is too big to email — put it somewhere shareable"
      ],
      "inputModes": ["application/json"],
      "outputModes": ["application/json"]
    },
    {
      "id": "share-file",
      "name": "Get a download link",
      "description": "Issue a fresh time-limited download URL for a stored file, or make a file permanently public.",
      "tags": ["file-transfer", "sharing", "links"],
      "examples": ["Give me a link to that file", "Make this file public"],
      "inputModes": ["application/json"],
      "outputModes": ["application/json"]
    },
    {
      "id": "manage-library",
      "name": "Manage stored files",
      "description": "List, trash, restore, and permanently delete stored files, and report storage usage.",
      "tags": ["file-management", "storage", "cleanup"],
      "examples": ["What files do I have stored?", "How much storage am I using?", "Delete that upload"],
      "inputModes": ["application/json"],
      "outputModes": ["application/json"]
    }
  ]
}
