Skip to main content
Glama

Server Details

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

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Uptime
100.0% over 40 days
Last Tested
Transport
Streamable HTTP · MCP 2025-06-18
URL

TDQS

A4.3/5.0

Scored across 2 tools

Disambiguation5/5

The two tools have clearly distinct roles: one generates an upload URL and the other polls for the uploaded file. There is no overlap or ambiguity in their purposes.

Naming Consistency5/5

Both tool names follow a consistent verb_noun pattern: 'generate_upload_url' and 'poll_for_upload'. The naming is predictable and matches their functions.

Tool Count4/5

With only two tools, the set is minimal, but it fully covers the intended remote camera capture workflow. The count is slightly below the typical 3–15 range but justified by the narrow scope.

Completeness5/5

The tools form a complete lifecycle for the domain: generate a reusable capture URL, then poll until the upload is ready. There are no missing operations or dead ends for the stated purpose.

Available Tools

2 tools
generate_upload_urlAInspect

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

ParametersJSON Schema
NameRequiredDescriptionDefault
messageNoInstructions/message to display to the user on the capture page (max 200 characters)

Output Schema

ParametersJSON Schema
NameRequiredDescription
session_idYesSession ID used for this upload, in UUID format
capture_urlYesFull URL to send to mobile device for photo capture

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the behavioral burden. It discloses reusability and the exact URL format, which is helpful. However, it does not mention any potential side effects, expiration, rate limits, or whether this creates a persistent record. For a generation tool with no annotations, this is adequate but not rich.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three concise sentences, each adding meaningful information. The description is front-loaded with the core action and includes practical format details without any fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple single-parameter tool with an output schema, the description covers purpose, usage, reuse, and output format. It doesn't explicitly link to the sibling polling tool, so there is a small gap in the overall workflow, but the tool itself is well described.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description covers the 'message' parameter fully (instructions to display, max length), so the description adds only marginal value by implying the message is shown on the capture page. Baseline of 3 is appropriate given 100% schema coverage and no additional parameter details in the description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Generate' and the resource 'URL for remote camera upload', and explains its purpose (sending to a mobile device for photo capture). It also explicitly distinguishes from the sibling tool 'poll_for_upload' by focusing on generation rather than polling.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides concrete usage context ('Send this URL to a mobile device to capture and upload a photo') and notes that the URL can be reused. It doesn't explicitly mention poll_for_upload as an alternative or next step, so it stops short of full exclusions, but the context is clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

poll_for_uploadAInspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
timeoutNoMax seconds to wait for upload
not_etagNoOnly detect files with different ETag than this value, used to poll for new uploads
session_idYesSession ID to poll for, in UUID format
modified_sinceNoOnly detect files modified after this date in ISO 8601 or HTTP date format

Output Schema

ParametersJSON Schema
NameRequiredDescription
etagYesETag of the uploaded file, can be used with not_etag parameter for subsequent polls
download_urlYesPresigned GET URL to download the uploaded photo, valid for 7 days
last_modifiedNoLast modified timestamp of the uploaded file from S3

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the behavioral burden. It discloses the waiting/polling nature, the presigned download URL result, and the ability to reuse a session_id across multiple uploads. It does not state what happens on timeout or when no matching upload is found, but the output schema likely covers the result shape.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no filler: the first states what the tool does and what it returns; the second adds useful reusability context. The most important information is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given full schema coverage and an output schema, the description provides enough flow context: polling intent, download URL result, and session reuse. The only gap is not explicitly connecting to generate_upload_url or defining 'capture URL', but the sibling context and the reuse sentence make the intent reasonably clear.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all four parameters. The description adds no parameter-level meaning beyond reinforcing that session_id can be reused, which matches the schema. This is the baseline case where schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific operation ('Poll S3 bucket waiting for photo upload to complete') and a concrete output ('Returns a presigned download URL when the file is ready'). This clearly differentiates it from the sibling generate_upload_url: one creates an upload URL, the other waits and returns a download URL.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context: this is the polling phase of an upload flow and the same session_id can be reused for repeated polls. However, it never explicitly names generate_upload_url as the preceding step or states when not to use this tool, so it stops short of full routing guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 1 tool update
    • Changedpoll_for_upload1 field changed
      • changedInput schema / properties / modified_since / examples
        Previous value: -[
        -  "2026-09-24T00:00:00.000Z",
        -  "Fri, 18 Sep 2026 00:00:00 GMT",
        -  "2026-09-23T00:00:00.000Z"
        -]New value: +[
        +  "2026-09-25T00:00:00.000Z",
        +  "Sat, 19 Sep 2026 00:00:00 GMT",
        +  "2026-09-24T00:00:00.000Z"
        +]
  2. 1 tool update
    • Changedpoll_for_upload1 field changed
      • changedInput schema / properties / modified_since / examples
        Previous value: -[
        -  "2026-09-23T00:00:00.000Z",
        -  "Thu, 17 Sep 2026 00:00:00 GMT",
        -  "2026-09-22T00:00:00.000Z"
        -]New value: +[
        +  "2026-09-24T00:00:00.000Z",
        +  "Fri, 18 Sep 2026 00:00:00 GMT",
        +  "2026-09-23T00:00:00.000Z"
        +]
  3. 1 tool update
    • Changedpoll_for_upload1 field changed
      • changedInput schema / properties / modified_since / examples
        Previous value: -[
        -  "2026-09-22T00:00:00.000Z",
        -  "Wed, 16 Sep 2026 00:00:00 GMT",
        -  "2026-09-21T00:00:00.000Z"
        -]New value: +[
        +  "2026-09-23T00:00:00.000Z",
        +  "Thu, 17 Sep 2026 00:00:00 GMT",
        +  "2026-09-22T00:00:00.000Z"
        +]
  4. 1 tool update
    • Changedpoll_for_upload1 field changed
      • changedInput schema / properties / modified_since / examples
        Previous value: -[
        -  "2026-09-21T00:00:00.000Z",
        -  "Tue, 15 Sep 2026 00:00:00 GMT",
        -  "2026-09-20T00:00:00.000Z"
        -]New value: +[
        +  "2026-09-22T00:00:00.000Z",
        +  "Wed, 16 Sep 2026 00:00:00 GMT",
        +  "2026-09-21T00:00:00.000Z"
        +]
  5. 1 tool update
    • Changedpoll_for_upload1 field changed
      • changedInput schema / properties / modified_since / examples
        Previous value: -[
        -  "2026-09-20T00:00:00.000Z",
        -  "Mon, 14 Sep 2026 00:00:00 GMT",
        -  "2026-09-19T00:00:00.000Z"
        -]New value: +[
        +  "2026-09-21T00:00:00.000Z",
        +  "Tue, 15 Sep 2026 00:00:00 GMT",
        +  "2026-09-20T00:00:00.000Z"
        +]
  6. 1 tool update
    • Changedpoll_for_upload1 field changed
      • changedInput schema / properties / modified_since / examples
        Previous value: -[
        -  "2026-09-19T00:00:00.000Z",
        -  "Sun, 13 Sep 2026 00:00:00 GMT",
        -  "2026-09-18T00:00:00.000Z"
        -]New value: +[
        +  "2026-09-20T00:00:00.000Z",
        +  "Mon, 14 Sep 2026 00:00:00 GMT",
        +  "2026-09-19T00:00:00.000Z"
        +]
  7. 1 tool update
    • Changedpoll_for_upload1 field changed
      • changedInput schema / properties / modified_since / examples
        Previous value: -[
        -  "2026-09-18T00:00:00.000Z",
        -  "Sat, 12 Sep 2026 00:00:00 GMT",
        -  "2026-09-17T00:00:00.000Z"
        -]New value: +[
        +  "2026-09-19T00:00:00.000Z",
        +  "Sun, 13 Sep 2026 00:00:00 GMT",
        +  "2026-09-18T00:00:00.000Z"
        +]
  8. 1 tool update
    • Changedpoll_for_upload1 field changed
      • changedInput schema / properties / modified_since / examples
        Previous value: -[
        -  "2026-09-17T00:00:00.000Z",
        -  "Fri, 11 Sep 2026 00:00:00 GMT",
        -  "2026-09-16T00:00:00.000Z"
        -]New value: +[
        +  "2026-09-18T00:00:00.000Z",
        +  "Sat, 12 Sep 2026 00:00:00 GMT",
        +  "2026-09-17T00:00:00.000Z"
        +]
  9. 1 tool update
    • Changedpoll_for_upload1 field changed
      • changedInput schema / properties / modified_since / examples
        Previous value: -[
        -  "2026-09-16T00:00:00.000Z",
        -  "Thu, 10 Sep 2026 00:00:00 GMT",
        -  "2026-09-15T00:00:00.000Z"
        -]New value: +[
        +  "2026-09-17T00:00:00.000Z",
        +  "Fri, 11 Sep 2026 00:00:00 GMT",
        +  "2026-09-16T00:00:00.000Z"
        +]
  10. 1 tool update
    • Changedpoll_for_upload1 field changed
      • changedInput schema / properties / modified_since / examples
        Previous value: -[
        -  "2026-09-15T00:00:00.000Z",
        -  "Wed, 09 Sep 2026 00:00:00 GMT",
        -  "2026-09-14T00:00:00.000Z"
        -]New value: +[
        +  "2026-09-16T00:00:00.000Z",
        +  "Thu, 10 Sep 2026 00:00:00 GMT",
        +  "2026-09-15T00:00:00.000Z"
        +]
  11. 1 tool update
    • Changedpoll_for_upload1 field changed
      • changedInput schema / properties / modified_since / examples
        Previous value: -[
        -  "2026-09-14T00:00:00.000Z",
        -  "Tue, 08 Sep 2026 00:00:00 GMT",
        -  "2026-09-13T00:00:00.000Z"
        -]New value: +[
        +  "2026-09-15T00:00:00.000Z",
        +  "Wed, 09 Sep 2026 00:00:00 GMT",
        +  "2026-09-14T00:00:00.000Z"
        +]
  12. 1 tool update
    • Changedpoll_for_upload1 field changed
      • changedInput schema / properties / modified_since / examples
        Previous value: -[
        -  "2026-09-13T00:00:00.000Z",
        -  "Mon, 07 Sep 2026 00:00:00 GMT",
        -  "2026-09-12T00:00:00.000Z"
        -]New value: +[
        +  "2026-09-14T00:00:00.000Z",
        +  "Tue, 08 Sep 2026 00:00:00 GMT",
        +  "2026-09-13T00:00:00.000Z"
        +]
  13. 1 tool update
    • Changedpoll_for_upload1 field changed
      • changedInput schema / properties / modified_since / examples
        Previous value: -[
        -  "2026-09-12T00:00:00.000Z",
        -  "Sun, 06 Sep 2026 00:00:00 GMT",
        -  "2026-09-11T00:00:00.000Z"
        -]New value: +[
        +  "2026-09-13T00:00:00.000Z",
        +  "Mon, 07 Sep 2026 00:00:00 GMT",
        +  "2026-09-12T00:00:00.000Z"
        +]
  14. 1 tool update
    • Changedpoll_for_upload1 field changed
      • changedInput schema / properties / modified_since / examples
        Previous value: -[
        -  "2026-09-11T00:00:00.000Z",
        -  "Sat, 05 Sep 2026 00:00:00 GMT",
        -  "2026-09-10T00:00:00.000Z"
        -]New value: +[
        +  "2026-09-12T00:00:00.000Z",
        +  "Sun, 06 Sep 2026 00:00:00 GMT",
        +  "2026-09-11T00:00:00.000Z"
        +]
  15. 1 tool update
    • Changedpoll_for_upload1 field changed
      • changedInput schema / properties / modified_since / examples
        Previous value: -[
        -  "2026-09-10T00:00:00.000Z",
        -  "Fri, 04 Sep 2026 00:00:00 GMT",
        -  "2026-09-09T00:00:00.000Z"
        -]New value: +[
        +  "2026-09-11T00:00:00.000Z",
        +  "Sat, 05 Sep 2026 00:00:00 GMT",
        +  "2026-09-10T00:00:00.000Z"
        +]
  16. 1 tool update
    • Changedpoll_for_upload1 field changed
      • changedInput schema / properties / modified_since / examples
        Previous value: -[
        -  "2026-09-09T00:00:00.000Z",
        -  "Thu, 03 Sep 2026 00:00:00 GMT",
        -  "2026-09-08T00:00:00.000Z"
        -]New value: +[
        +  "2026-09-10T00:00:00.000Z",
        +  "Fri, 04 Sep 2026 00:00:00 GMT",
        +  "2026-09-09T00:00:00.000Z"
        +]
  17. 1 tool update
    • Changedpoll_for_upload1 field changed
      • changedInput schema / properties / modified_since / examples
        Previous value: -[
        -  "2026-09-08T00:00:00.000Z",
        -  "Wed, 02 Sep 2026 00:00:00 GMT",
        -  "2026-09-07T00:00:00.000Z"
        -]New value: +[
        +  "2026-09-09T00:00:00.000Z",
        +  "Thu, 03 Sep 2026 00:00:00 GMT",
        +  "2026-09-08T00:00:00.000Z"
        +]
  18. 1 tool update
    • Changedpoll_for_upload1 field changed
      • changedInput schema / properties / modified_since / examples
        Previous value: -[
        -  "2026-09-07T00:00:00.000Z",
        -  "Tue, 01 Sep 2026 00:00:00 GMT",
        -  "2026-09-06T00:00:00.000Z"
        -]New value: +[
        +  "2026-09-08T00:00:00.000Z",
        +  "Wed, 02 Sep 2026 00:00:00 GMT",
        +  "2026-09-07T00:00:00.000Z"
        +]
  19. 1 tool update
    • Changedpoll_for_upload1 field changed
      • changedInput schema / properties / modified_since / examples
        Previous value: -[
        -  "2026-09-06T00:00:00.000Z",
        -  "Mon, 31 Aug 2026 00:00:00 GMT",
        -  "2026-09-05T00:00:00.000Z"
        -]New value: +[
        +  "2026-09-07T00:00:00.000Z",
        +  "Tue, 01 Sep 2026 00:00:00 GMT",
        +  "2026-09-06T00:00:00.000Z"
        +]
  20. 1 tool update
    • Changedpoll_for_upload1 field changed
      • changedInput schema / properties / modified_since / examples
        Previous value: -[
        -  "2026-09-05T00:00:00.000Z",
        -  "Sun, 30 Aug 2026 00:00:00 GMT",
        -  "2026-09-04T00:00:00.000Z"
        -]New value: +[
        +  "2026-09-06T00:00:00.000Z",
        +  "Mon, 31 Aug 2026 00:00:00 GMT",
        +  "2026-09-05T00:00:00.000Z"
        +]

Related MCP Connectors

Related MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources