# Remote Camera (remote · www.ai.moda)

Capture photos remotely from mobile devices via S3-backed upload URLs

- Trust score: 68/100 (medium)
- Change this week: +3
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `www.ai.moda`: 68/100 (this document), [markdown](https://verifymcp.io/servers/moda-ai-remote-camera/mcp-servers-remote-camera-mcp.md), [page](https://verifymcp.io/servers/moda-ai-remote-camera/mcp-servers-remote-camera-mcp)

## Channel facts

- Endpoint: `https://www.ai.moda/mcp-servers/remote-camera/mcp`
- Transports: `streamable-http`
- Auth: `required`
- Version: `1.0.0`

## 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**: 66/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 2 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - HTTPS is enforced; there's no plaintext access path.
  - The HSTS (Strict-Transport-Security) header is present.
  - DNSSEC is configured correctly; the domain's records validate against the full chain to the root.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 236 tokens (~118/item across 2 items; 2 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 60/100
  - Spec-recency check failed: implements MCP spec 2025-06-18; the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http moda-ai-remote-camera https://www.ai.moda/mcp-servers/remote-camera/mcp
```

### Codex

```toml
[mcp_servers.moda-ai-remote-camera]
url = "https://www.ai.moda/mcp-servers/remote-camera/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "moda-ai-remote-camera": {
      "type": "remote",
      "url": "https://www.ai.moda/mcp-servers/remote-camera/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add moda-ai-remote-camera --url https://www.ai.moda/mcp-servers/remote-camera/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  moda-ai-remote-camera:
    url: "https://www.ai.moda/mcp-servers/remote-camera/mcp"
```

### Other

```json
{
  "mcpServers": {
    "moda-ai-remote-camera": {
      "type": "http",
      "url": "https://www.ai.moda/mcp-servers/remote-camera/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 68, +1)

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

### 2026-08-01 (score 67, +1)

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

### 2026-07-31 (score 66, +1)

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

### 2026-07-30 (score 65, −1)

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

### 2026-07-28 (score 66, +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-27 (score 65, +1)

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

### 2026-07-26 (score 64)

First indexed and scored.

## MCP tools (2)

### `generate_upload_url` (~101 tokens)

Generate a URL for remote camera upload. Send this URL to a mobile device to capture and upload a photo. The capture URL can be reused multiple times to upload different photos without generating a new URL. The URL will be in format: https://www.ai.moda/mcp-servers/remote-camera/capture/?url=PRESIGNED_URL

Input parameters:

- `message` (string): Instructions/message to display to the user on the capture page (max 200 characters)

Output parameters:

- `capture_url` (string): Full URL to send to mobile device for photo capture
- `session_id` (string): Session ID used for this upload, in UUID format

### `poll_for_upload` (~135 tokens)

Poll S3 bucket waiting for photo upload to complete. Returns a presigned download URL when the file is ready. The same session_id can be used to poll for new uploads multiple times, allowing the capture URL to be reused.

Input parameters:

- `modified_since` (string): Only detect files modified after this date in ISO 8601 or HTTP date format
- `not_etag` (string): Only detect files with different ETag than this value, used to poll for new uploads
- `session_id` (string, required): Session ID to poll for, in UUID format
- `timeout` (integer): Max seconds to wait for upload

Output parameters:

- `download_url` (string): Presigned GET URL to download the uploaded photo, valid for 7 days
- `etag` (string): ETag of the uploaded file, can be used with not_etag parameter for subsequent polls
- `last_modified` (string): Last modified timestamp of the uploaded file from S3

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/moda-ai-remote-camera/mcp-servers-remote-camera-mcp#diagnostics

## Score history

- 2026-08-03: 68
- 2026-08-02: 67
- 2026-08-01: 67
- 2026-07-31: 66
- 2026-07-30: 65
- 2026-07-29: 66
- 2026-07-28: 66
- 2026-07-27: 65
- 2026-07-26: 64

## Links

- Remote endpoint: https://www.ai.moda/mcp-servers/remote-camera/mcp
- Authorisation metadata: https://www.ai.moda/.well-known/oauth-protected-resource/mcp-servers/remote-camera/mcp
- Website: https://www.ai.moda/mcp-servers/remote-camera/
- Changelog RSS feed: https://verifymcp.io/servers/moda-ai-remote-camera/mcp-servers-remote-camera-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/moda-ai-remote-camera/mcp-servers-remote-camera-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/moda-ai-remote-camera/mcp-servers-remote-camera-mcp
