# Uploadcare — MCP server on mcp.ai > Connect your Uploadcare account and use 34 tools for file management and storage straight from your AI agent. Connect with your own API key. Uploadcare is a comprehensive file handling service that offers uploading, storage, processing, and delivery solutions for web and mobile applications. By: mcp.ai · official Page: https://mcp.ai/uploadcare ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_uploadcare?ms=1787293560000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/uploadcare/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/uploadcare/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/uploadcare/skill.md Postman collection (v2.1): https://mcp.ai/uploadcare/postman.json ## Tools - uploadcare_check_aws_rekognition_moderation_status(request_id: string) — Tool to check the execution status of AWS Rekognition Moderation labels detection. Use after initiating a moderation check to monitor progress and determine when results are ready. - uploadcare_check_remove_bg_status(request_id: string) — Tool to check Remove.bg execution status and get the UUID of the file with removed background. Use after requesting background removal to poll for completion and retrieve the processed file UUID. - uploadcare_copy_file_local(store?: string, source: string, metadata?: object) — Tool to copy a file to local storage within the same Uploadcare project. Use when you need to create a duplicate of an existing file. - uploadcare_create_file_group_upload(files: string[], expire?: integer, pub_key: string, signature?: string) — Tool to create a file group from already uploaded files using Uploadcare's Upload API. Use after files have been uploaded to group them together. - uploadcare_create_webhook(event: string, is_active?: boolean, target_url: string, signing_secret?: string) — Create a new webhook subscription to receive notifications when file events occur. Use this to get real-time callbacks at your URL when files are uploaded, stored, deleted, or flagged. The project is - uploadcare_delete_file_metadata_key(key: string, uuid: string) — Tool to delete a specific metadata key from an Uploadcare file. Use when you need to remove obsolete metadata after file processing. - uploadcare_delete_files(file_uuids: string[]) — Tool to delete multiple files from Uploadcare storage in a single request. Use when you need to remove up to 100 files at once. Invalid UUIDs or missing files will be reported in the problems field. - uploadcare_delete_group(uuid: string) — Tool to delete a file group. Use when you need to remove a group from the project. Note that files within the group are not deleted, only the group itself. - uploadcare_delete_single_file(uuid: string) — Tool to delete a single file from Uploadcare storage by UUID. Use when you need to permanently remove a file from storage (note: file may remain in CDN cache). - uploadcare_delete_webhook(id: string) — Permanently deletes a webhook subscription from your Uploadcare project. Use the List Webhooks action first to obtain the webhook ID. This action is irreversible. - uploadcare_delete_webhook_by_url(target_url: string) — Tool to delete a webhook subscription by its target URL. Use when you know the webhook's target URL but not its ID. - uploadcare_execute_clamav_scan(params?: object, target: string) — Tool to execute ClamAV virus scan on an uploaded file. Use this when you need to check if a file contains viruses or malware. The scan runs asynchronously - you receive a request_id to track the scan - uploadcare_get_aws_rekognition_execution_status(request_id: string) — Tool to check AWS Rekognition execution status for label detection. Use after initiating an AWS Rekognition add-on execution to monitor job progress. - uploadcare_get_clamav_scan_status(request_id: string) — Tool to check the execution status of a ClamAV virus scan. Use after initiating a ClamAV scan to monitor its progress and determine when results are available. - uploadcare_get_file_group_info_upload(pub_key: string, group_id: string) — Tool to get information about a file group from the Upload API. Use when you need to retrieve group details including file metadata from the upload endpoint. - uploadcare_get_file_info(uuid: string) — Tool to get information about a specific file. Use after uploading a file to retrieve detailed metadata and usage information. - uploadcare_get_file_metadata(uuid: string) — Tool to retrieve all metadata key-value pairs associated with an Uploadcare file. Use when you need to inspect custom metadata attached to a file. - uploadcare_get_file_metadata_key(key: string, uuid: string) — Tool to get the value of a specific metadata key for an Uploadcare file. Use when you need to retrieve custom metadata associated with a file. - uploadcare_get_group_info(uuid: string) — Tool to get information about a specific file group. Use when you need to retrieve detailed metadata about a group and its contained files. - uploadcare_get_project_info() — Tool to get information about the current Uploadcare project. Use when you need to retrieve project configuration details. - uploadcare_get_uploaded_file_info(file_id: string, pub_key: string) — Tool to get information about an uploaded file using Uploadcare's Upload API. Use this to retrieve file metadata including size, MIME type, and content information immediately after upload. - uploadcare_get_url_upload_status(token: string) — Tool to check the status of a URL upload task. Use after initiating a file upload from a URL to monitor progress or verify completion. - uploadcare_image_mirror(uuid: string) — Tool to mirror an image horizontally via Uploadcare CDN. Use when you need the URL of a horizontally flipped image. - uploadcare_list_files(limit?: integer, offset?: integer, stored?: string, include?: string, removed?: string, to_date?: string, ordering?: string, from_date?: string) — List files in an Uploadcare project with pagination and optional filtering. Use this tool to retrieve uploaded files. Supports filtering by storage status, removal status, and date range. Results are - uploadcare_list_groups(limit?: integer, offset?: integer, ordering?: string) — Tool to list groups in the project. Use when you need to retrieve paginated groups of files. - uploadcare_list_webhooks() — Retrieves all webhook subscriptions for the authenticated Uploadcare project. Use this tool to view configured webhooks that receive notifications for file events (uploads, deletions, storage, etc.). - uploadcare_rotate_image(uuid: string, degrees: integer) — Tool to rotate an image by specified degrees counterclockwise. Use when you need to rotate an uploaded image by 90, 180, or 270 degrees. Use after confirming the file UUID. - uploadcare_start_multipart_upload(size: integer, expire?: integer, filename: string, part_size?: integer, signature?: string, content_type: string, UPLOADCARE_STORE?: string, UPLOADCARE_PUB_KEY: string) — Tool to start a multipart upload session for files larger than 100MB. Use when you need to upload large files that exceed the direct upload size limit. Returns presigned URLs for uploading file parts. - uploadcare_store_batch_files(file_uuids: string[]) — Tool to store multiple files in one request. Use when you need to mark up to 100 files as permanently stored in bulk. - uploadcare_store_file(uuid: string) — Tool to mark an Uploadcare file as permanently stored. Use after uploading a file when you need to store it permanently. - uploadcare_store_single_file(uuid: string) — Tool to store a single file by UUID permanently. Use when you need to make an uploaded file available permanently (stored files are retained indefinitely). - uploadcare_update_file_metadata_key(key: string, uuid: string, value: string) — Tool to update or set the value of a specific metadata key for a file. Use when you need to add or modify file metadata. - uploadcare_update_webhook(id: integer, event?: string, is_active?: boolean, target_url?: string, signing_secret?: string) — Update an existing webhook subscription by its ID. Use this to modify the target URL, event type, active status, or signing secret of a webhook. Only provide the fields you want to update - all fields - uploadcare_upload_from_url(store?: string, pub_key: string, filename?: string, source_url: string, save_URL_duplicates?: string, check_URL_duplicates?: string) — Tool to upload a file from a publicly available URL to Uploadcare. Use when you need to import files from external URLs into your Uploadcare project. ## Example prompts - "What can I do in Uploadcare?" - "Show me a summary of my Uploadcare account" ## Links Docs: https://mcp.ai/docs/mcps/uploadcare Website: https://mcp.ai/mcps/uploadcare