# ProtoClinical Commerce (remote · www.theprotoclinical.com)

Search ProtoClinical's current K-beauty catalog and manage buyer-approved carts and checkouts.

- Trust score: 73/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-16

## Components

- remote · `www.theprotoclinical.com`: 73/100 (this document), [markdown](https://verifymcp.io/servers/com-theprotoclinical-commerce/api-ucp-mcp.md), [page](https://verifymcp.io/servers/com-theprotoclinical-commerce/api-ucp-mcp)

## Channel facts

- Endpoint: `https://www.theprotoclinical.com/api/ucp/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `0.1.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-16.

- **Endpoint Security**: 86/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation is enforced on tool calls, but the challenge carries no valid RFC 9728 metadata, so a client cannot discover where to get a token.
  - HTTPS is enforced; there's no plaintext access path.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - 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**: 58/100
  - AI-judged instruction clarity (good).
  - Context-footprint check failed: tool/resource definitions use about 2280 tokens (~175/item across 13 items; 13 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 10/100
  - Stability observed for 3 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.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http com-theprotoclinical-commerce https://www.theprotoclinical.com/api/ucp/mcp
```

### Codex

```toml
[mcp_servers.com-theprotoclinical-commerce]
url = "https://www.theprotoclinical.com/api/ucp/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-theprotoclinical-commerce": {
      "type": "remote",
      "url": "https://www.theprotoclinical.com/api/ucp/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add com-theprotoclinical-commerce --url https://www.theprotoclinical.com/api/ucp/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  com-theprotoclinical-commerce:
    url: "https://www.theprotoclinical.com/api/ucp/mcp"
```

### Other

```json
{
  "mcpServers": {
    "com-theprotoclinical-commerce": {
      "type": "http",
      "url": "https://www.theprotoclinical.com/api/ucp/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-16 (score 73, +1)

- [functional] This server's schema is too large to store in full, so we cannot compare its tools day to day

### 2026-08-15 (score 72, +1)

- [functional] This server's schema is too large to store in full, so we cannot compare its tools day to day

### 2026-08-14 (score 71, 0)

- [functional improvement] Stability: unverified → 0.03
- [functional] This server's schema is too large to store in full, so we cannot compare its tools day to day

### 2026-08-13 (score 71)

First indexed and scored.

## MCP tools (13)

### `get_checkout` (~171 tokens)

Returns details about the checkout, including line items, totals, and any applicable discounts or taxes.

Prices in the response are integers in the currency's ISO 4217 minor units, paired with
a currency code: {"amount": 600, "currency": "USD"} is $6.00 and {"amount": 2500,
"currency": "USD"} is $25.00. Convert to major units before quoting a price to a buyer
(divide by 100 for two-decimal currencies such as USD and EUR; zero-decimal currencies
such as JPY are already whole units).

Input parameters:

- `id` (string, required): The ID of the checkout to update. Format: 'gid://shopify/Checkout/abc123'
- `meta` (object, required): Metadata for UCP agent profile discovery.

### `create_checkout` (~155 tokens)

Creates a checkout. Returns checkout details, including line items, totals, and any applicable discounts or taxes.

Prices in the response are integers in the currency's ISO 4217 minor units, paired with
a currency code: {"amount": 600, "currency": "USD"} is $6.00 and {"amount": 2500,
"currency": "USD"} is $25.00. Convert to major units before quoting a price to a buyer
(divide by 100 for two-decimal currencies such as USD and EUR; zero-decimal currencies
such as JPY are already whole units).

Input parameters:

- `checkout` (object, required): Checkout properties.
- `meta` (object, required): Metadata for UCP agent profile discovery.

### `update_checkout` (~182 tokens)

Updates a checkout. Returns checkout details, including line items, totals, and any applicable discounts or taxes.

Prices in the response are integers in the currency's ISO 4217 minor units, paired with
a currency code: {"amount": 600, "currency": "USD"} is $6.00 and {"amount": 2500,
"currency": "USD"} is $25.00. Convert to major units before quoting a price to a buyer
(divide by 100 for two-decimal currencies such as USD and EUR; zero-decimal currencies
such as JPY are already whole units).

Input parameters:

- `checkout` (object, required): Checkout properties.
- `id` (string, required): The ID of the checkout to update. Format: 'gid://shopify/Checkout/abc123'
- `meta` (object, required): Metadata for UCP agent profile discovery.

### `complete_checkout` (~192 tokens)

Completes a checkout and returns the checkout result. Returns details about the completed checkout, including order ID, Thank You Page URL, or any errors encountered.

Prices in the response are integers in the currency's ISO 4217 minor units, paired with
a currency code: {"amount": 600, "currency": "USD"} is $6.00 and {"amount": 2500,
"currency": "USD"} is $25.00. Convert to major units before quoting a price to a buyer
(divide by 100 for two-decimal currencies such as USD and EUR; zero-decimal currencies
such as JPY are already whole units).

Input parameters:

- `checkout` (object, required): Checkout properties.
- `id` (string, required): The ID of the checkout to update. Format: 'gid://shopify/Checkout/abc123'
- `meta` (object, required): Metadata for UCP agent profile discovery.

### `cancel_checkout` (~157 tokens)

Cancels a checkout.

Prices in the response are integers in the currency's ISO 4217 minor units, paired with
a currency code: {"amount": 600, "currency": "USD"} is $6.00 and {"amount": 2500,
"currency": "USD"} is $25.00. Convert to major units before quoting a price to a buyer
(divide by 100 for two-decimal currencies such as USD and EUR; zero-decimal currencies
such as JPY are already whole units).

Input parameters:

- `id` (string, required): The ID of the checkout to update. Format: 'gid://shopify/Checkout/abc123'
- `meta` (object, required): Metadata for UCP agent profile discovery.

### `get_cart` (~155 tokens)

Get the cart contents

Prices in the response are integers in the currency's ISO 4217 minor units, paired with
a currency code: {"amount": 600, "currency": "USD"} is $6.00 and {"amount": 2500,
"currency": "USD"} is $25.00. Convert to major units before quoting a price to a buyer
(divide by 100 for two-decimal currencies such as USD and EUR; zero-decimal currencies
such as JPY are already whole units).

Input parameters:

- `id` (string, required): The ID of the cart. Format: 'gid://shopify/Cart/abc123'
- `meta` (object, required): Metadata for UCP agent profile discovery.

### `create_cart` (~139 tokens)

Creates a new cart

Prices in the response are integers in the currency's ISO 4217 minor units, paired with
a currency code: {"amount": 600, "currency": "USD"} is $6.00 and {"amount": 2500,
"currency": "USD"} is $25.00. Convert to major units before quoting a price to a buyer
(divide by 100 for two-decimal currencies such as USD and EUR; zero-decimal currencies
such as JPY are already whole units).

Input parameters:

- `cart` (object, required): Cart properties.
- `meta` (object, required): Metadata for UCP agent profile discovery.

### `update_cart` (~165 tokens)

Perform updates to a cart.

Prices in the response are integers in the currency's ISO 4217 minor units, paired with
a currency code: {"amount": 600, "currency": "USD"} is $6.00 and {"amount": 2500,
"currency": "USD"} is $25.00. Convert to major units before quoting a price to a buyer
(divide by 100 for two-decimal currencies such as USD and EUR; zero-decimal currencies
such as JPY are already whole units).

Input parameters:

- `cart` (object, required): Cart properties.
- `id` (string, required): The ID of the cart. Format: 'gid://shopify/Cart/abc123'
- `meta` (object, required): Metadata for UCP agent profile discovery.

### `cancel_cart` (~155 tokens)

Cancels a cart.

Prices in the response are integers in the currency's ISO 4217 minor units, paired with
a currency code: {"amount": 600, "currency": "USD"} is $6.00 and {"amount": 2500,
"currency": "USD"} is $25.00. Convert to major units before quoting a price to a buyer
(divide by 100 for two-decimal currencies such as USD and EUR; zero-decimal currencies
such as JPY are already whole units).

Input parameters:

- `id` (string, required): The ID of the cart. Format: 'gid://shopify/Cart/abc123'
- `meta` (object, required): Metadata for UCP agent profile discovery.

### `get_order` (~156 tokens)

Get the details of an order

Prices in the response are integers in the currency's ISO 4217 minor units, paired with
a currency code: {"amount": 600, "currency": "USD"} is $6.00 and {"amount": 2500,
"currency": "USD"} is $25.00. Convert to major units before quoting a price to a buyer
(divide by 100 for two-decimal currencies such as USD and EUR; zero-decimal currencies
such as JPY are already whole units).

Input parameters:

- `id` (string, required): The ID of the order. Format: 'gid://shopify/Order/123'
- `meta` (object, required): Metadata for UCP agent profile discovery.

### `search_catalog` (~226 tokens)

Search for products from the online store, hosted on Shopify.

This tool can be used to search for products using natural language queries, specific filter criteria, or both.
At least one of query or filters must be provided.

Results are paginated, with initial results limited to improve experience.
Use the pagination.cursor from the response to fetch additional pages when users request more results.

Response conforms to the UCP catalog search capability (dev.ucp.shopping.catalog.search).

Prices in the response are integers in the currency's ISO 4217 minor units, paired with
a currency code: {"amount": 600, "currency": "USD"} is $6.00 and {"amount": 2500,
"currency": "USD"} is $25.00. Convert to major units before quoting a price to a buyer
(divide by 100 for two-decimal currencies such as USD and EUR; zero-decimal currencies
such as JPY are already whole units).

Input parameters:

- `catalog` (object, required): Catalog search parameters.
- `meta` (object, required): Metadata for UCP agent profile discovery.

### `lookup_catalog` (~236 tokens)

Look up multiple products or variants by identifier.
Use this tool to resolve multiple product/variant IDs in a single request.

Supports:
\- Product IDs (gid://shopify/Product/...): Returns product with match: "featured"
\- Variant IDs (gid://shopify/ProductVariant/...): Returns parent product with the exact variant

Results are grouped by product. Each variant includes an inputs array showing
which request ID resolved to it and whether the match was exact or featured.

Prices in the response are integers in the currency's ISO 4217 minor units, paired with
a currency code: {"amount": 600, "currency": "USD"} is $6.00 and {"amount": 2500,
"currency": "USD"} is $25.00. Convert to major units before quoting a price to a buyer
(divide by 100 for two-decimal currencies such as USD and EUR; zero-decimal currencies
such as JPY are already whole units).


Maximum 10 IDs per request.

Input parameters:

- `catalog` (object, required): Catalog lookup parameters.
- `meta` (object, required): Metadata for UCP agent profile discovery.

### `get_product` (~191 tokens)

Retrieve complete product detail by identifier. Returns a singular product
with a relevant set of variants, exact pricing, and real-time availability.
Supports interactive option selection via selected and preferences parameters
for variant narrowing and availability signals. Use for product detail page
rendering and purchase decisions.

Prices in the response are integers in the currency's ISO 4217 minor units, paired with
a currency code: {"amount": 600, "currency": "USD"} is $6.00 and {"amount": 2500,
"currency": "USD"} is $25.00. Convert to major units before quoting a price to a buyer
(divide by 100 for two-decimal currencies such as USD and EUR; zero-decimal currencies
such as JPY are already whole units).

Input parameters:

- `catalog` (object, required): Product detail parameters.
- `meta` (object, required): Metadata for UCP agent profile discovery.

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/com-theprotoclinical-commerce/api-ucp-mcp#diagnostics

## Score history

- 2026-08-16: 73
- 2026-08-15: 72
- 2026-08-14: 71
- 2026-08-13: 71

## Links

- Remote endpoint: https://www.theprotoclinical.com/api/ucp/mcp
- Website: https://www.theprotoclinical.com/
- Changelog RSS feed: https://verifymcp.io/servers/com-theprotoclinical-commerce/api-ucp-mcp.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-theprotoclinical-commerce/api-ucp-mcp.json
- HTML version of this page: https://verifymcp.io/servers/com-theprotoclinical-commerce/api-ucp-mcp
