# NotRobophobic shop (remote · notrobo.shop)

Machine-history prints, merch and £4 print files at notrobo.shop, run by an AI. Cards for downloads.

- Trust score: 66/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-20

## Components

- remote · `notrobo.shop`: 66/100 (this document), [markdown](https://verifymcp.io/servers/shop-notrobo-shop/mcp-shop.md), [page](https://verifymcp.io/servers/shop-notrobo-shop/mcp-shop)

## Channel facts

- Endpoint: `https://notrobo.shop/mcp/shop`
- 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-09-20.

- **Endpoint Security**: 57/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 11 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.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 83/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1015 tokens (~92/item across 11 items; 11 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 13/100
  - Stability observed for 4 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.
- **Tool Safety**: 75/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - 0 of 1 tool(s) whose name or description implies an irreversible operation declare an MCP destructiveHint annotation; "remove-from-basket" implies "remove" and declares no destructiveHint at all, which the MCP spec reads as destructive by default.
  - An AI judge read all 12 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### How do I install the NotRobophobic shop MCP server?

NotRobophobic shop is a hosted endpoint at https://notrobo.shop/mcp/shop, so there is nothing to install locally. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add --transport http shop-notrobo-shop 'https://notrobo.shop/mcp/shop'
```

### Cursor

```json
{
  "mcpServers": {
    "shop-notrobo-shop": {
      "url": "https://notrobo.shop/mcp/shop"
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "shop-notrobo-shop": {
      "type": "http",
      "url": "https://notrobo.shop/mcp/shop"
    }
  }
}
```

### Codex

```toml
[mcp_servers.shop-notrobo-shop]
url = "https://notrobo.shop/mcp/shop"
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add shop-notrobo-shop --url 'https://notrobo.shop/mcp/shop' --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  shop-notrobo-shop:
    url: "https://notrobo.shop/mcp/shop"
```

### Netclaw

```json
{
  "McpServers": {
    "shop-notrobo-shop": {
      "Transport": "http",
      "Url": "https://notrobo.shop/mcp/shop"
    }
  }
}
```

### Vellum

```bash
assistant mcp add shop-notrobo-shop -t streamable-http -u 'https://notrobo.shop/mcp/shop'
```

### Other

```json
{
  "mcpServers": {
    "shop-notrobo-shop": {
      "type": "http",
      "url": "https://notrobo.shop/mcp/shop"
    }
  }
}
```

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-09-19 (score 66, +1)

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

### 2026-09-17 (score 65, +1)

- [functional improvement] Stability: unverified → 0.03

### 2026-09-16 (score 64)

First indexed and scored.

## MCP tools (11)

### `search-products` (~55 tokens)

Search Products

Search the shop catalogue. Returns matching products with their slugs, price and stock availability. Use get-product for full details and variants.

Input parameters:

- `query` (string): Search terms. Omit or leave empty to list the latest products.

### `get-product` (~61 tokens)

Get Product

Get a product's full details by slug: description, options, and every variant with its SKU, price and stock. Variant IDs are what you add to a basket.

Input parameters:

- `slug` (string, required): The product slug, e.g. "enamel-mug".

### `create-basket` (~37 tokens)

Create Basket

Create a new basket. Returns a basket_token — keep it and pass it to every basket and checkout tool. Treat it as a secret.

### `add-to-basket` (~73 tokens)

Add To Basket

Add a product variant to a basket. Get variant IDs from get-product. Returns the updated basket.

Input parameters:

- `basket_token` (string, required): The basket token from create-basket.
- `quantity` (integer): Quantity to add (default 1).
- `variant_id` (integer, required): The product variant ID to add.

### `view-basket` (~35 tokens)

View Basket

View a basket: its lines, quantities and subtotal.

Input parameters:

- `basket_token` (string, required): The basket token from create-basket.

### `update-basket-item` (~78 tokens)

Update Basket Item

Change the quantity of a basket line. A quantity of 0 removes it. Returns the updated basket.

Input parameters:

- `basket_token` (string, required): The basket token from create-basket.
- `item_id` (integer, required): The basket line ID (from view-basket).
- `quantity` (integer, required): New quantity; 0 removes the line.

### `remove-from-basket` (~54 tokens)

Remove From Basket

Remove a line from a basket. Returns the updated basket.

Input parameters:

- `basket_token` (string, required): The basket token from create-basket.
- `item_id` (integer, required): The basket line ID (from view-basket).

### `apply-discount-to-basket` (~59 tokens)

Apply Discount To Basket

Apply a discount code to a basket. Returns the updated basket with the discount reflected in the totals.

Input parameters:

- `basket_token` (string, required): The basket token from create-basket.
- `code` (string, required): The discount code to apply.

### `list-shipping-methods` (~62 tokens)

List Shipping Methods

List available delivery methods, optionally filtered by destination country (ISO 2-letter code). Use the method ID in start-checkout.

Input parameters:

- `country` (string): Optional ISO 3166-1 alpha-2 destination country, e.g. "GB".

### `start-checkout` (~176 tokens)

Start Checkout

Turn a basket into an order and get payment links. Two ways to pay: a human pay_url (pay-by-bank, the customer authorises in their banking app) and, when offered, an x402_payment_url for autonomous USDC settlement with no human needed. Never claim to have paid — confirm with get-order-status. For digital-only baskets, only name and country are required in shipping_address.

Input parameters:

- `basket_token` (string, required): The basket token from create-basket.
- `email` (string, required): Customer email for order confirmation.
- `shipping_address` (object, required): Customer address. For digital-only baskets only name and country are needed; physical orders also need line1, city and postcode.
- `shipping_method_id` (integer): Delivery method ID from list-shipping-methods. Omit for baskets containing only digital products.

### `get-order-status` (~65 tokens)

Get Order Status

Check an order's status. Requires the order number AND the email it was placed with.

Input parameters:

- `email` (string, required): The email address the order was placed with.
- `order_number` (string, required): The order number, e.g. ORD-260612-AB3D.

## Diagnostics

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

## Score history

- 2026-09-20: 66
- 2026-09-19: 66
- 2026-09-18: 65
- 2026-09-17: 65
- 2026-09-16: 64

## Common questions

### What is the NotRobophobic shop MCP server?

NotRobophobic shop is an MCP server listed in the public MCP registry as shop.notrobo/shop. Machine-history prints, merch and £4 print files at notrobo.shop, run by an AI. Cards for downloads. This page covers its hosted endpoint (https://notrobo.shop/mcp/shop).

### Is the NotRobophobic shop MCP server safe to use?

NotRobophobic shop scores 66 out of 100 on VerifyMCP. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the NotRobophobic shop MCP server expose?

NotRobophobic shop exposes 11 tools: search-products, get-product, create-basket, add-to-basket, view-basket, and 6 more. Their descriptions and schemas cost roughly 755 tokens of context every time the server is loaded.

### Does the NotRobophobic shop MCP server require authentication?

No. We connected to NotRobophobic shop without credentials and it answered, so anything it exposes is reachable by anyone who knows the address.

### Is the NotRobophobic shop MCP server still maintained?

NotRobophobic shop is still listed as active in the MCP registry. We last reached this channel on 20 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

## Links

- Remote endpoint: https://notrobo.shop/mcp/shop
- Website: https://notrobo.shop/
- Changelog RSS feed: https://verifymcp.io/servers/shop-notrobo-shop/mcp-shop.xml
- Changelog JSON feed: https://verifymcp.io/servers/shop-notrobo-shop/mcp-shop.json
- HTML version of this page: https://verifymcp.io/servers/shop-notrobo-shop/mcp-shop
