# io.usefulapi/uploadcare (remote · uploadcare.usefulapi.io)

Manage Uploadcare files, groups and webhooks; upload and store files.

- Trust score: 18/100 (low)
- Change this week: −51
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `uploadcare.usefulapi.io`: 18/100 (this document), [markdown](https://verifymcp.io/servers/io-usefulapi-uploadcare/uploadcare.md), [page](https://verifymcp.io/servers/io-usefulapi-uploadcare/uploadcare)

## Channel facts

- Endpoint: `https://uploadcare.usefulapi.io/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.1`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 46/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to connect, but we couldn't read the tool list to see what that exposes.
  - HTTPS not yet verified: we couldn't determine whether a plaintext access path exists.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 0/100
  - Transport check failed: declared streamable-http, but the endpoint returned HTTP 429.
- **Schema Quality & AI Usability**: 0/100
  - Schema not yet verified: we couldn't read the endpoint's schema.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 0/100
  - Tool coverage not yet verified: we couldn't read the endpoint's tools.
- **Capabilities**: 0/100
  - Capabilities not yet verified: we couldn't read the endpoint's capabilities.

**Unverified: 4 categories.** Categories scored 0 because we could not verify them: authentication we do not have, an unreachable endpoint, or not enough scan history. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add --transport http io-usefulapi-uploadcare https://uploadcare.usefulapi.io/mcp
```

### Codex

```toml
[mcp_servers.io-usefulapi-uploadcare]
url = "https://uploadcare.usefulapi.io/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "io-usefulapi-uploadcare": {
      "type": "remote",
      "url": "https://uploadcare.usefulapi.io/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add io-usefulapi-uploadcare --url https://uploadcare.usefulapi.io/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  io-usefulapi-uploadcare:
    url: "https://uploadcare.usefulapi.io/mcp"
```

### Other

```json
{
  "mcpServers": {
    "io-usefulapi-uploadcare": {
      "type": "http",
      "url": "https://uploadcare.usefulapi.io/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 18, −55)

- [security regression] Endpoint reachability: reachable → not serving MCP
- [security regression] Authorization: pass → unverified
- [security regression] Stability: 0.20 → unverified
- [security regression] Transport: pass → fail
- [functional regression] Tool coverage: 100 → unverified
- [functional regression] Capabilities: fail → unverified

### 2026-08-02 (score 73, +55)

- [security improvement] Authorization: unverified → pass
- [security improvement] Transport: fail → pass
- [functional regression] MCP protocol: unverified → fail
- [functional improvement] Endpoint reachability: not serving MCP → reachable
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] Stability: unverified → 0.20

### 2026-08-01 (score 18, −54)

- [security regression] Endpoint reachability: reachable → not serving MCP
- [security regression] Stability: 0.13 → unverified
- [security regression] Authorization: pass → unverified
- [security regression] Transport: pass → fail
- [functional regression] Capabilities: fail → unverified
- [functional regression] Tool coverage: 100 → unverified

### 2026-07-31 (score 72, +3)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 69, −2)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-29 (score 71, +1)

No change was recorded against any check on this day. Stability & Change Management went from 3 to 7. That category is still filling its 30-day observation window: 1 days of observed history at the previous scan, 2 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-28 (score 70, +1)

- [functional improvement] Stability: unverified → 0.03

### 2026-07-27 (score 69, +57)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

## MCP tools (11)

### `uploadcare_get_project` (~36 tokens)

Get project

Get project details: name, public key, collaborators, and whether autostore is enabled. REST API: GET /project/.

### `uploadcare_list_files` (~136 tokens)

List files

List files in the project (paginated envelope: next, previous, total, per_page, results). REST API: GET /files/.

Input parameters:

- `from` (string): Pagination cursor taken from a previous response's `next` URL.
- `limit` (integer): Files per page (max 1000). Default 100.
- `ordering` (string): Sort order, e.g. datetime_uploaded or -datetime_uploaded (descending).
- `removed` (boolean): Filter by removed status (true = removed, false = present).
- `stored` (boolean): Filter by stored status (true = stored, false = not stored).

### `uploadcare_get_file` (~66 tokens)

Get file

Get full info for a single file: uuid, url, original_filename, size, mime_type, is_image, is_ready, timestamps, variations, content_info, metadata, tags. REST API: GET /files/{uuid}/.

Input parameters:

- `uuid` (string, required): File UUID.

### `uploadcare_get_file_metadata` (~42 tokens)

Get file metadata

Get all custom metadata key/value pairs for a file. REST API: GET /files/{uuid}/metadata/.

Input parameters:

- `uuid` (string, required): File UUID.

### `uploadcare_list_groups` (~79 tokens)

List groups

List file groups in the project (paginated envelope: next, previous, total, per_page, results). REST API: GET /groups/.

Input parameters:

- `limit` (integer): Groups per page (max 1000). Default 100.
- `ordering` (string): Sort order, e.g. datetime_created or -datetime_created (descending).

### `uploadcare_get_group` (~63 tokens)

Get group

Get info for a single file group by its id. REST API: GET /groups/{uuid}/.

Input parameters:

- `uuid` (string, required): Group id in the form "<uuid>~<count>", e.g. "badfc9f7-...~2".

### `uploadcare_list_webhooks` (~28 tokens)

List webhooks

List all webhook subscriptions configured for the project. REST API: GET /webhooks/.

### `uploadcare_upload_from_url` (~125 tokens)

Upload file from URL

Uploads a file into the project from a public URL (additive). Uses the Upload API host with the public key. Returns { type: "token", token } for async ingestion (poll separately) or the file info. Upload API: POST /from_url/.

Input parameters:

- `filename` (string): Override the stored filename.
- `source_url` (string, required): Public URL of the file to ingest.
- `store` (string): Store the file: "1" = store, "0" = don't store, "auto" = project default. Default "auto".

### `uploadcare_store_file` (~53 tokens)

Store file

Marks a file as permanently stored (otherwise unstored files are deleted after 24h). Additive. REST API: PUT /files/{uuid}/storage/.

Input parameters:

- `uuid` (string, required): File UUID to store.

### `uploadcare_delete_file` (~43 tokens)

Delete file

Permanently deletes a file from the project. Destructive. REST API: DELETE /files/{uuid}/.

Input parameters:

- `uuid` (string, required): File UUID to delete.

### `uploadcare_create_webhook` (~87 tokens)

Create webhook

Creates a webhook subscription (additive). The project will POST to target_url when the chosen event fires. REST API: POST /webhooks/.

Input parameters:

- `event` (string): Event to subscribe to. Default "file.uploaded".
- `is_active` (boolean): Whether the webhook is active. Default true.
- `target_url` (string, required): URL the webhook will POST to.

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/io-usefulapi-uploadcare/uploadcare#diagnostics

## Score history

- 2026-08-03: 18
- 2026-08-02: 73
- 2026-08-01: 18
- 2026-07-31: 72
- 2026-07-30: 69
- 2026-07-29: 71
- 2026-07-28: 70
- 2026-07-27: 69
- 2026-07-26: 12

## Links

- Remote endpoint: https://uploadcare.usefulapi.io/mcp
- Repository: https://github.com/m190/usefulapi-mcp
- Changelog RSS feed: https://verifymcp.io/servers/io-usefulapi-uploadcare/uploadcare/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/io-usefulapi-uploadcare/uploadcare/changelog.json
- HTML version of this page: https://verifymcp.io/servers/io-usefulapi-uploadcare/uploadcare
