INDIVIDUAL MCP TOOL
search_products
Search the SOKKS sock catalog by keyword (e.g. 'sneaker', 'business', 'bamboo', 'black'). Returns up to 8 products with title, price (EUR), handle and URL. Use get_product_variants with a handle to obtain variant IDs before adding to cart.
LIVE ENDPOINT
https://sokks-official.com
Connect to this endpoint to inspect the live schema for search_products and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- A tool name or description suggests retrieving external content.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.webmcp]
url = "https://sokks-official.com"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"webmcp": {
"type": "http",
"url": "https://sokks-official.com"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: webmcp
Remote MCP URL: https://sokks-official.com
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"webmcp": {
"url": "https://sokks-official.com"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"webmcp": {
"type": "http",
"url": "https://sokks-official.com"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "webmcp",
"transport": "streamable-http",
"url": "https://sokks-official.com"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
get_product_variants— Get all purchasable variants (size/set combinations) of a SOKKS product by its handle. Returns variant_id, variant title, price in EUR and availability. The variant_id is required for add_to_cart.add_to_cart— Add a product variant to the shopping cart. Requires a numeric variant_id from get_product_variants. Does NOT start checkout - the user reviews the cart at /cart and completes the purchase themselves.get_shipping_and_returns— Get SOKKS shipping costs, delivery times, return policy and guarantees.subscribe_newsletter— Subscribe an email address to the SOKKS newsletter (10% welcome discount). Sends a double-opt-in confirmation email - the subscription only becomes active after the user confirms it.