Reference for StateSet MCP tool names, parameters, and example payloads. Use when composing or debugging `mcp__stateset-commerce__` tool calls or reviewing MCP schemas.
Reference map for StateSet MCP tools, grouped by domain with example payloads.
stateset --help to list available MCP tool commands.list_*, get_*, create_*, update_* tools documented in references.Use this skill when you need to:
get_*, list_*, mcp list-tools, mcp validate — no --apply needed.create_*, update_*, delete_* — requires --apply.stateset mcp call create_order '{"customerId":"cust_123","items":[{"sku":"SKU-001","quantity":1,"unitPrice":29.99}]}'
stateset mcp call get_order '{"orderId":"ord_456"}'
stateset mcp list-tools --domain inventory
stateset mcp validate '{"tool":"adjust_inventory","params":{"sku":"WIDGET-001","quantity":10}}'
{"tool":"create_order","params":{"customerId":"<uuid>","items":[{"sku":"SKU-001","name":"Widget","quantity":1,"unitPrice":29.99}]},"required":["customerId","items"],"method":"POST"}
MCP_SERVER_URL is set.mcp-tools.js.STATESET_API_KEY and token expiry in the MCP server config.mcp_timeout_ms if needed.MCP_TOOL_NOT_FOUND: The requested tool name does not exist on the MCP server.MCP_PARAM_VALIDATION: One or more required parameters are missing or have an invalid type.MCP_AUTH_REJECTED: API key is invalid or expired; re-check STATESET_API_KEY and token expiry.get_order and get_customer.