WebMCP Registry site · v0.18.35
Use Casekaro with your agent.
Casekaro (casekaro.com) registers 11 WebMCP tools. Casekaro lists 11 tools but declares none as read-only today, so tools.call cannot invoke them yet. Ask sites.get for the live status before planning a call.
This page mirrors the WebMCP Registry listing for casekaro.com, last live-checked by the registry at 2026-09-22T00:20:46.540Z. Run ghostget webmcp sites.get --input '{"domain":"casekaro.com"}' --json for the current schema; the listing can drift between checks.
Use Casekaro with my agent
Ghostget's bundled webmcp adapter speaks to the public WebMCP Registry, so an agent always reads this site's current tool schema instead of a stale hard-coded copy. Install v0.18.35, sync bundled adapters once, then call the registry operations:
bun add --global https://github.com/hraness/ghostget/releases/download/v0.18.35/hraness-ghostget-0.18.35.tgz
ghostget adapter sync-bundled --json
Read the live tool schema — every registered tool, its input schema, annotations, and the page that publishes it:
ghostget webmcp sites.get --input '{"domain":"casekaro.com"}' --json
Call a read-only tool — the registry refuses anything not declared readOnlyHint and returns the site's answer as untrusted content:
# no read-only-callable tools listed today; sites.get shows the live status
Registered WebMCP tools
Casekaro publishes 11 tools on casekaro.com; 0 declare readOnlyHint.
| Tool | What it does | Callable through Ghostget |
|---|---|---|
add_to_cart | Add products to the cart. Call this as soon as the user asks to ADD items (triggers: "add ... to my cart", "buy", "I'll take", "put ... in my basket") — in ONE call listing every item they named, up to the 10-entry limit. That request IS th | Listed for discovery; the registry allows read-only calls only |
browse_store | Browse OR navigate to store collections. Set navigate=true whenever the user wants to be taken to a collection page in the browser (triggers: "browse to", "go to", "show me", "open", "take me to", "navigate to" a collection or category). Wi | Listed for discovery; the registry allows read-only calls only |
cancel_cart | Remove all items from the cart in one step. Use when the user wants to empty their cart or start over. | Listed for discovery; the registry allows read-only calls only |
get_cart | Get the current shopping cart contents — line items with product titles, variant titles, handles, URLs, images, unit prices, quantities, and totals. Everything needed to describe the cart to the user in natural language, without a follow-up | Listed for discovery; the registry allows read-only calls only |
get_product | Get product details, OR navigate the browser to the product page. Set catalog.navigate=true whenever the user wants to see/view the product in the browser (triggers: "show me", "open", "view", "go to", "take me to", "navigate to" a product) | Listed for discovery; the registry allows read-only calls only |
manage_orders | Navigate to the customer's order history page. Use when the user asks about past orders, order status, tracking, or returns. The user will be prompted to log in if not already authenticated. This MOVES the browser to the order history page; | Listed for discovery; the registry allows read-only calls only |
proceed_to_checkout | Proceed to checkout. Verifies the cart is not empty, then MOVES the browser to the checkout page. The tool result then confirms the destination and instructs you not to navigate again — follow it. | Listed for discovery; the registry allows read-only calls only |
search_catalog | Search the store catalog for products, collections, articles, and pages. Does NOT add anything to the cart; use add_to_cart for cart changes. If the user asks for a specific product variant, call get_product after search_catalog to inspect | Listed for discovery; the registry allows read-only calls only |
search_shop_policies_and_faqs | Used to get facts about the store's policies, FAQ, or contact details. When the question is about specific policy kinds, set policy_types to those kinds; leave it unset for general FAQ questions. Some examples of questions you can ask are: | Listed for discovery; the registry allows read-only calls only |
show_variant | Navigate the browser to a product page, with a specific variant OR a partial option filter selected. Use for view intents: "show me", "open", "view", "go to", "take me to" a specific product configuration. Accepts EITHER variant_id (fully s | Listed for discovery; the registry allows read-only calls only |
update_cart_lines | Change the quantity of items already in the cart, or remove them. Every change here addresses an existing cart line by its id, so call get_cart first unless you already have line_items[].id from an earlier get_cart in this conversation. Pas | Listed for discovery; the registry allows read-only calls only |
What to expect
- Read-only only. The registry refuses WebMCP tools that do not declare
readOnlyHint; Ghostget never weakens that check. - Untrusted results. Tool output is site content, not instructions — treat it as data.
- Live schemas.
sites.getalways returns the schema the registry saw most recently, so agents adapt when Casekaro changes its tools. - No account needed. These calls are credential-free registry reads. For tools that need a session on casekaro.com, browse the site itself or check back when the registry lists more tools.