com.b2bware/mcp-server
com.b2bware/mcp-serverB2Bware MCP server — access products, orders and customers from Cursor, Claude, Windsurf and more.
Tools · 104
Search B2Bware products by name, SKU, EAN/GTIN, or category name. Returns a merged, deduplicated list (max ~100 results). For full catalogue browsing or large result sets use list_products instead. Pr…
List B2Bware products with optional filters and pagination. Use this for full catalogue browsing — supports 23.000+ products via pagination. To browse products of a specific category, use search_produ…
Get full details of a single B2Bware product by ID.
List all B2Bware product categories.
Get a single B2Bware category by ID.
List B2Bware orders with optional filters, sorting, and pagination. Valid statuses: pending, processing, completed, cancelled. Valid sort fields: id, -id, _created_at, -_created_at, total_price, -tota…
Update the status of an existing order. Valid statuses: pending, processing, completed, cancelled.
Get full details of a single order including line items.
List all available shipping methods. Call this before checkout to retrieve valid method IDs required for the checkout call.
List all available payment / billing methods. Call this before checkout to retrieve valid method IDs required for the checkout call.
Preview checkout for a cart: returns calculated totals, shipping, and tax without completing the order. Use before calling checkout to show the customer the final amounts.
Create or update a shopping cart. Pass a stable session_uuid to update an existing cart. Returns the cart with its ID for use in checkout. Optionally pass 'price' per line item to override the catalog…
Retrieve the current cart contents for a session by session_uuid. Uses API filter when supported; otherwise may require multiple list calls when many carts exist.
List all carts, optionally filtered by customer ID.
Remove a single item from a cart by cart-item ID.
Execute checkout on an existing cart and create an order. Requires a cart_id, shipping and billing address IDs, and method IDs. IMPORTANT: Before calling checkout, always fetch available shipping meth…
Calculate tax for line items given customer context (country, region, customer_group, vat_number). Uses TaxHub rule engine. Returns tax amounts per line and total. Useful before checkout or for quotes…
List all B2Bware customers with pagination, sorting and filtering. Valid sort fields: id, -id, _created_at, -_created_at, email, first_name.
Search customers by name, email or customer number (partial match). Searches across email, first_name, last_name and customer_number simultaneously. For listing all customers use list_customers.
Get full details of a single customer by ID, including their shipping and billing addresses.
Create a new customer account in B2Bware.
Update an existing customer account (name, phone, status, company_id, role_id, etc.).
List all shipping and billing addresses for a customer.
[customer] List B2B companies from CustomerHub (/companies). No separate CompanyHub. Use search_companies for multi-field lookup. Custom fields via set_company_attributes (AttributesHub company group)…
[customer] Search companies by name, email, VAT number, or company_number (partial match, deduplicated). CustomerHub /companies endpoint.
[customer] Get a company by ID from CustomerHub. Default includes: customers, shippingAddresses, billingAddresses. Add attributeValues,attributeValues.value for custom company attributes.
[customer] Create a B2B company in CustomerHub. Optional address fields map to the company record. Requires admin/write scope.
[customer] Update a company by ID (partial fields). CustomerHub PUT /companies/{id}.
[customer] Delete a company by ID. CustomerHub DELETE /companies/{id}.
[customer] Create up to 100 companies (partial success). Same fields as create_company per item.
[customer] Create shipping and/or billing address for a company (type: billing | shipping | both).
[customer] List customers linked to a company (company_id on customer records).
Create a shipping address for a customer. Country accepts ISO-2 (e.g. "AT") or full name (e.g. "Austria") — both are normalised automatically.
Create a billing address for a customer. Country accepts ISO-2 (e.g. "DE") or full name (e.g. "Germany") — both are normalised automatically.
Authenticate a customer with email and password. Returns a bearer token that can be used for subsequent requests.
Register a new customer account.
[catalog] Create a B2Bware product category. Call list_categories first to obtain parent_id values for subcategories. Use for demo catalog provisioning.
[catalog] Update a category by ID (partial fields).
[catalog] Delete a category by ID. May fail if products are still assigned.
[catalog] Create up to 100 categories in one call (partial success). Items should list parents before children or include parent_id; order is normalized top-down.
[catalog] Create a new simple product with price, stock, categories, optional images and tier prices. Call list_categories first for valid category_ids. SKU must be unique.
[catalog] Update a product by ID (partial fields). Supports price, stock, categories, media URLs.
[catalog] Delete a product by ID.
[catalog] Create or update a product by SKU (idempotent). Prefer for imports and MCP retries. Same fields as create_product.
[catalog] Create or upsert up to 100 products (partial success). Uses SKU upsert per item for idempotency.
[catalog] Add a quantity tier price to an existing product. Fetches current tiers and appends one row.
[catalog] Create a product brand/manufacturer. Brands are stored as attribute values on the Brand/Manufacturer attribute (AttributesHub). Names should be unique. Call list_brands first to avoid duplic…
[catalog] Update a brand by attribute_value id (brand id from create_brand / list_brands).
[catalog] Delete a brand (attribute value). Fails with 409 if products still use it unless force=true.
[catalog] Get a brand by id (attribute_value id).
[catalog] List brands with pagination. Optional search matches brand name (partial). Filter is_active is applied client-side when stored in meta_data.
[catalog] Create up to 100 brands (partial success). Same fields as create_brand per item.
[attributes] Create an attribute definition in AttributesHub. Set entity_scope (product, customer, order, company, category) or group_id. Brands use a product-scoped attribute (e.g. Brand/Manufacturer…
[attributes] Update an attribute definition by id.
[attributes] Delete an attribute definition by id.
[attributes] Get an attribute by id. Include values,group for full context.
[attributes] List attribute definitions. Filter by entity_scope or group_id. Product group includes Brand/Manufacturer and all catalog facets.
[attributes] Bulk create/update attribute definitions (AttributesHub insert/bulk). Max 100 items.
[attributes] Create a predefined option (select/multiselect/swatch). swatch_value is forwarded to DataHub but may return null until backend persists it (verify with list_attribute_values). For colors …
[attributes] Create up to 100 attribute values in one call (partial success, parallel). Same fields as create_attribute_value per item. No DataHub bulk route — MCP orchestrates POSTs.
[attributes] Update an attribute value by id.
[attributes] Delete an attribute value by id.
[attributes] Get a single attribute value by id.
[attributes] List values for an attribute_id (all options for that field).
[attributes] Create an attribute group for a scope (usually pre-seeded per tenant).
[attributes] Update an attribute group.
[attributes] Delete an attribute group by id.
[attributes] Get an attribute group by id.
[attributes] List attribute groups (Product, Category, Order, Customer, Company). Use entity_scope to filter.
[attributes] List valid attribute group type strings from the API.
[attributes] Assign attributes on any entity: product, category, order, customer, or company. For select/swatch use attribute_value_id (value is resolved automatically) or attribute_id + value. merge=…
[attributes] Read attribute assignments for any entity scope.
[attributes] Remove one attribute from an entity by attribute_id.
[attributes] Alias: set_entity_attributes with entity_scope=product.
[attributes] Alias: get_entity_attributes for products (includes brand summary).
[attributes] Alias: remove_entity_attribute for products.
[attributes] Assign AttributesHub fields on a CustomerHub company (entity_scope=company, group id 5).
[attributes] Read custom attributes on a company.
[attributes] Remove one attribute from a company.
[attributes] Assign attributes on a customer (Customer Attributes group).
[attributes] Read attributes on a customer.
[attributes] Remove one attribute from a customer.
[attributes] Assign attributes on an order (Order Attributes group).
[attributes] Read attributes on an order.
[attributes] Remove one attribute from an order.
[b2b] Assign a customer to a company. Use list_roles for valid role_id values. Sets company_id (and optional role_id) on the customer record.
[b2b] Alias for link_customer_to_company (spec-compatible name).
[b2b] Remove a customer from their company (clears company_id).
[b2b] Alias for unlink_customer_from_company.
[b2b] List customer roles (for link_customer_to_company role_id).
[b2b] Create a customer with optional company link and billing/shipping addresses in one call. Use list_companies or search_companies first if you need an existing company_id.
[b2b] Delete a customer by ID.
[b2b] Update a customer shipping address by ID.
[b2b] Update a customer billing address by ID.
[b2b] Delete a shipping address by ID.
[b2b] Delete a billing address by ID.
[b2b] Create up to 100 customers (partial success). Same shape as create_customer_full per item.
[orders-admin] Create an order directly in OrderHub (demo/backfill). Does NOT run cart checkout — use for historical or manual orders. Call list_shipping_methods, list_billing_methods, and list_custom…
[orders-admin] Create up to 100 orders (partial success). Each item uses the same fields as create_order.
[orders-admin] Update order fields (status, addresses, methods, order_date, external_reference). Does not replace line items — use update_order_line_items for that.
[orders-admin] Replace or update line items on an existing order via PUT /orders/{id}. Same line_items shape as create_order.
[orders-admin] Cancel an order (status → canceled). Optional reason stored as order comment.
[orders-admin] Permanently delete an order by ID.
[orders-admin] Deploy the built-in ProductHub demo catalog (categories + sample products). Use on empty demo instances only — may duplicate data if run twice.
Similar MCP servers embedding-nearest
How to use
Add to your Claude Desktop / Cursor / Cline MCP config:
{
"mcpServers": {
"com.b2bware/mcp-server": {
"url": "https://mcp.b2bware.com/mcp",
"transport": "streamable-http"
}
}
}