Skip to content
MCP-Bridge
Finance & Payments

File storage API Claude Desktop Config

Add the File storage API MCP server to Claude Desktop with this ready-to-use configuration.

Setup Instructions

  1. Open Claude Desktop
  2. Go to Settings → Developer → Edit Config → claude_desktop_config.json
  3. Paste the JSON below into the file
  4. Set your credentials in the env section
  5. Restart Claude Desktop

Configuration JSON

Copy the entire block into your claude_desktop_config.json

{
  "mcpServers": {
    "apideck-com-file-storage": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/apideck-com-file-storage"
      ],
      "env": {
        "FILE_STORAGE_API_API_KEY": "your_file_storage_api_api_key"
      }
    }
  }
}

Environment Variables

FILE_STORAGE_API_API_KEY

Replace your_file_storage_api_api_key with your actual file storage api api key

Endpoints

GET/file-storage/drive-groups

List DriveGroups

POST/file-storage/drive-groups

Create DriveGroup

GET/file-storage/drive-groups/{id}

Get DriveGroup

DELETE/file-storage/drive-groups/{id}

Delete DriveGroup

PATCH/file-storage/drive-groups/{id}

Update DriveGroup

GET/file-storage/drives

List Drives

POST/file-storage/drives

Create Drive

GET/file-storage/drives/{id}

Get Drive

DELETE/file-storage/drives/{id}

Delete Drive

PATCH/file-storage/drives/{id}

Update Drive