← arcuswear.store

INDIVIDUAL MCP TOOL

get_product

Get full detail for one product, including every size/color variant with availability, by product handle or id.

arcuswear.storenone authenticationAvailability not checked

Input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent endpoint

arcuswear.store

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.arcus-wear-agent]
url = "https://www.arcuswear.store/api/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "arcus-wear-agent": {
      "type": "http",
      "url": "https://www.arcuswear.store/api/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: arcus-wear-agent
Remote MCP URL: https://www.arcuswear.store/api/mcp

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": {
    "arcus-wear-agent": {
      "url": "https://www.arcuswear.store/api/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "arcus-wear-agent": {
      "type": "http",
      "url": "https://www.arcuswear.store/api/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "arcus-wear-agent",
  "transport": "streamable-http",
  "url": "https://www.arcuswear.store/api/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • list_products — List products in the Arcus Wear catalog.
  • search_products — Keyword search over the Arcus Wear catalog (name + description).
  • get_cart — Get the contents of a cart.
  • add_to_cart — Add an item to a cart and return the updated cart (including a real Shopify checkout_url).
  • get_shipping_quote — Get available shipping options and estimated delivery for a cart shipping to an address.
  • create_checkout — Return the real Shopify-hosted checkout URL for the cart (optionally prefilling the customer email).
  • complete_order — Complete a purchase WITHOUT a browser redirect: charges a Stripe-tokenized payment method and places the paid order.