File storage API Claude Desktop Config
Add the File storage API MCP server to Claude Desktop with this ready-to-use configuration.
Setup Instructions
- Open Claude Desktop
- Go to Settings → Developer → Edit Config →
claude_desktop_config.json - Paste the JSON below into the file
- Set your credentials in the
envsection - 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_KEYReplace your_file_storage_api_api_key with your actual file storage api api key
Endpoints
GET
/file-storage/drive-groupsList DriveGroups
POST
/file-storage/drive-groupsCreate 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/drivesList Drives
POST
/file-storage/drivesCreate Drive
GET
/file-storage/drives/{id}Get Drive
DELETE
/file-storage/drives/{id}Delete Drive
PATCH
/file-storage/drives/{id}Update Drive