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

Read store products, orders, customers, categories and coupons; adjust inventory and update orders.

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

## Components

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

## Channel facts

- Endpoint: `https://ecwid.usefulapi.io/mcp`
- Transports: `streamable-http`
- Auth: `none`
- 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**: 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-ecwid https://ecwid.usefulapi.io/mcp
```

### Codex

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

### opencode

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

### OpenClaw

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

### Hermes

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

### Other

```json
{
  "mcpServers": {
    "io-usefulapi-ecwid": {
      "type": "http",
      "url": "https://ecwid.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, −54)

- [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 72, +44)

- [security improvement] Authorization: unverified → 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 28, −43)

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

### 2026-07-31 (score 71, +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 68, −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 70, +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 69, 0)

- [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 (12)

### `ecwid_get_store_profile` (~41 tokens)

Get store profile

Get the store's profile — general info (store id, name, currency), company details, and settings. Ecwid REST: GET /profile.

### `ecwid_search_products` (~242 tokens)

Search products

Search / list the store's products with optional filters (keyword, SKU, category, stock, price range) and sorting. Returns a paged collection ({total, count, offset, limit, items}). Ecwid REST: GET /products.

Input parameters:

- `category` (integer): Filter to products in this category id (0 = root).
- `enabled` (boolean): Filter to enabled (true) or disabled (false) products.
- `inStock` (boolean): Filter to in-stock (true) or out-of-stock (false) products.
- `keyword` (string): Full-text search term (matches title, description, SKU…).
- `limit` (integer): Max results per page (1-100).
- `offset` (integer): Pagination offset.
- `priceFrom` (number): Minimum price (inclusive).
- `priceTo` (number): Maximum price (inclusive).
- `sku` (string): Filter by exact product SKU.
- `sortBy` (string): Sort order: RELEVANCE | PRICE_ASC | PRICE_DESC | NAME_ASC | NAME_DESC | ADDED_TIME_ASC | ADDED_TIME_DESC | UPDATED_TIME_ASC | UPDATED_TIME_DESC.

### `ecwid_get_product` (~52 tokens)

Get product

Get a single product by its id, including price, stock, options, images, and category assignments. Ecwid REST: GET /products/{productId}.

Input parameters:

- `product_id` (integer, required): Product id.

### `ecwid_search_orders` (~265 tokens)

Search orders

Search / list the store's orders with optional filters (keyword, customer email/id, payment & fulfillment status, coupon, created-date range). Returns a paged collection. Ecwid REST: GET /orders.

Input parameters:

- `coupon_code` (string): Filter by applied coupon code.
- `created_from` (string): Filter to orders created on/after this date (YYYY-MM-DD or Unix timestamp).
- `created_to` (string): Filter to orders created on/before this date (YYYY-MM-DD or Unix timestamp).
- `customer_id` (integer): Filter by customer id.
- `email` (string): Filter by customer email.
- `fulfillment_status` (string): Filter by fulfillment status: AWAITING_PROCESSING | PROCESSING | SHIPPED | DELIVERED | WILL_NOT_DELIVER | RETURNED | READY_FOR_PICKUP | OUT_FOR_DELIVERY.
- `keyword` (string): Full-text search term (order number, customer name, email…).
- `limit` (integer): Max results per page (1-100).
- `offset` (integer): Pagination offset.
- `payment_status` (string): Filter by payment status: AWAITING_PAYMENT | PAID | CANCELLED | REFUNDED | PARTIALLY_REFUNDED | INCOMPLETE.

### `ecwid_get_order` (~59 tokens)

Get order

Get a single order by its order number, including line items, totals, customer, and payment/fulfillment status. Ecwid REST: GET /orders/{orderNumber}.

Input parameters:

- `order_number` (required): Order number (the store-visible order id).

### `ecwid_search_customers` (~121 tokens)

Search customers

Search / list the store's customers with optional filters (keyword, email, name, customer group). Returns a paged collection. Ecwid REST: GET /customers.

Input parameters:

- `customer_group_id` (integer): Filter by customer group id.
- `email` (string): Filter by customer email.
- `keyword` (string): Full-text search term (name, email…).
- `limit` (integer): Max results per page (1-100).
- `name` (string): Filter by customer name.
- `offset` (integer): Pagination offset.

### `ecwid_get_customer` (~48 tokens)

Get customer

Get a single customer by id, including contact details, addresses, and customer group. Ecwid REST: GET /customers/{customerId}.

Input parameters:

- `customer_id` (integer, required): Customer id.

### `ecwid_list_categories` (~102 tokens)

List categories

List the store's product categories, optionally scoped to a parent category and including hidden ones. Returns a paged collection. Ecwid REST: GET /categories.

Input parameters:

- `hidden_categories` (boolean): Include hidden (disabled) categories when true.
- `limit` (integer): Max results per page (1-100).
- `offset` (integer): Pagination offset.
- `parent` (integer): List only subcategories of this parent category id (0 = root).

### `ecwid_get_category` (~50 tokens)

Get category

Get a single category by id, including its name, parent, product ids, and images. Ecwid REST: GET /categories/{categoryId}.

Input parameters:

- `category_id` (integer, required): Category id.

### `ecwid_list_discount_coupons` (~141 tokens)

List discount coupons

List the store's discount coupons with optional filters (coupon code, discount type, availability). Returns a paged collection. Ecwid REST: GET /discount_coupons.

Input parameters:

- `availability` (string): Filter by availability, e.g. ACTIVE | PAUSED | EXPIRED | COMPLETE.
- `coupon_code` (string): Filter by exact coupon code.
- `discount_type` (string): Filter by discount type, e.g. ABS | PERCENT | SHIPPING | ABS_AND_SHIPPING | PERCENT_AND_SHIPPING.
- `limit` (integer): Max results per page (1-100).
- `offset` (integer): Pagination offset.

### `ecwid_adjust_product_inventory` (~98 tokens)

Adjust product inventory

ADJUSTS a product's in-stock quantity by a delta — this MODIFIES live store data. Positive increases stock, negative decreases it. Ecwid REST: PUT /products/{productId}/inventory with JSON body {quantityDelta}. Returns {updateCount, warning?}.

Input parameters:

- `product_id` (integer, required): Product id to adjust.
- `quantity_delta` (integer, required): Change in stock quantity — positive increases stock, negative decreases.

### `ecwid_update_order` (~174 tokens)

Update order

UPDATES an order — its payment status, fulfillment status, and/or tracking number. This MODIFIES live store data and may trigger customer notifications. Ecwid REST: PUT /orders/{orderNumber}. Provide only the fields you want to change. Returns {updateCount}.

Input parameters:

- `fulfillment_status` (string): New fulfillment status: AWAITING_PROCESSING | PROCESSING | SHIPPED | DELIVERED | WILL_NOT_DELIVER | RETURNED | READY_FOR_PICKUP | OUT_FOR_DELIVERY.
- `order_number` (required): Order number to update.
- `payment_status` (string): New payment status: AWAITING_PAYMENT | PAID | CANCELLED | REFUNDED | PARTIALLY_REFUNDED | INCOMPLETE.
- `tracking_number` (string): Shipping tracking number to record on the order.

## Diagnostics

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

## Score history

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

## Links

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