# DSers Official MCP Server

The DSers Official MCP Server is a hosted remote Model Context Protocol server that allows MCP-compatible AI clients to work with DSers dropshipping workflows, including product import, product optim…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y smithery mcp add dsers/mcp-server

# Browse available tools
npx -y smithery tool list dsers/mcp-server

# Get full schema for a tool
npx -y smithery tool get dsers/mcp-server dsers_store_discover

# Call a tool
npx -y smithery tool call dsers/mcp-server dsers_store_discover '{}'
```

## Direct MCP Connection

Endpoint: `https://dsers-mcp-server.run.tools`

## Tools (11)

- `dsers_store_discover` — Retrieve available stores and supported rules for the connected DSers account. Call this first — the response contains …
- `dsers_rules_validate` — Check and normalize a rules object against the provider's capabilities before importing. Use this to verify pricing, co…
- `dsers_product_import` — Import product(s) from supplier URL(s) into the DSers import list and return a preview. Supports AliExpress, Alibaba, a…
- `dsers_product_preview` — Reload the preview for an already-imported product (by import_item_id). Two modes: compact (default) returns [name, sel…
- `dsers_product_update_rules` — Update pricing, content, images, or variant rules on an already-imported product. Rules are merged incrementally: prici…
- `dsers_store_push` — Push one or more prepared import drafts to the connected Shopify or Wix store(s). SAFETY: Automatic pre-push validation…
- `dsers_product_delete` — Permanently delete a product from the DSers import list. IRREVERSIBLE — the product cannot be recovered after deletion.…
- `dsers_import_list` — Browse the DSers import list with enriched variant data. Returns per item: import_item_id, title, image, sell_price_ran…
- `dsers_my_products` — Browse products already pushed to a store. Requires store_id (from dsers_store_discover). Returns compact items with: d…
- `dsers_find_product` — Search the DSers product pool for products to import by keyword or by image URL (visual search). Covers three supplier …
- `dsers_sku_remap` — Replace the supplier on a store product with SKU-level variant matching. DEFAULTS TO mode='preview' which is read-only …

```bash
# Get full input/output schema for a tool
npx -y smithery tool get dsers/mcp-server <tool-name>
```

## Prompts (4)

- `dsers_workflow_quick-import` (product_url, store_name) — Quick product import workflow — import a single AliExpress, Alibaba, or Accio.com product and push it to your Shopify o…
- `dsers_workflow_bulk-import` (product_urls, price_multiplier, store_name) — Bulk import multiple products with a pricing multiplier — import several supplier URLs at once and apply a price markup…
- `dsers_workflow_multi-push` (product_url) — Push one product to all connected Shopify and Wix stores at once — useful for sellers managing multiple storefronts.
- `dsers_workflow_seo-optimize` (product_url, store_name, target_audience) — Import a product, use your LLM capabilities to rewrite the title and description for SEO, then push the optimized listi…
