eCommerce
klatchit.com
Provides access to Klatchit marketplace catalog, product details, categories, cart link creation, and help center search for e-commerce integration.
ENDPOINT 1
https://www.klatchit.com/api/mcp/mcp
MCP server metadata
- Name
- klatchit
- Version
- 1.0.0
Klatchit is a multi-seller marketplace: many independent sellers list offers on a shared product catalog, and a buyer picks among competing offers for the same product. This is the PUBLIC, ANONYMOUS server — no account, no sign-in, no cookie is read. It exposes seven tools in four groups. CATALOG (read-only — exactly what an anonymous visitor sees on the website): 1. "get_categories" — the category taxonomy; call once if you need a category slug to narrow a search. 2. "search_products" — find candidate products. Returns product cards with a canonical page URL, the cheapest offer price, and how many sellers are competing. 3. "get_product" — full detail for one product slug: description, images, specifications, and the complete list of purchasable offers (one per seller, each with price, condition, store name, and the "listing_id" that identifies that seller's offer). HELP (read-only — the same published help articles a visitor reads on the web, browsable at /help and readable in full at /help/<slug>): 4. "search_help" — search Klatchit's help center and FAQ for how the marketplace actually works: policies, fees, returns, shipping, buying, selling, and developer/API topics. 5. "get_help_article" — the full body of one help article. This is the authoritative source for what Klatchit's rules are: ground every claim about a fee, window, or policy in an article you fetched here, and never state one from memory. HANDOFF: 6. "create_cart_link" — once the user has chosen specific offers, produce ONE link that puts them all in the user's own cart. SETUP: 7. "get_connection_guide" — if the user asks how to connect their own Claude, ChatGPT, or code to Klatchit (the public catalog, or their own account), return the exact setup steps and links for their client. Prices are integer CENTS in USD (e.g. 4999 means $49.99). Every product has a "url" you can cite or hand to the user. BUYING — on THIS server you cannot buy anything. There is no checkout, no payment, and no order placement here. "create_cart_link" does NOT purchase: it returns a URL the USER opens in their own browser, where the items appear in their own cart for them to review, change, and pay for themselves. Present it as "here's a link to your cart" — never as a completed order, a reservation, or a hold. Nothing is bought, charged, or reserved until the human checks out, and prices and availability are re-checked when they open the link, so quote prices as current, not guaranteed. ACTING FOR A SIGNED-IN USER — a Klatchit account holder can connect their OWN agent to the AUTHENTICATED MCP server at https://www.klatchit.com/api/agent/mcp through OAuth. Connected that way, with the person's explicit consent and only the scopes they granted, an agent can read that user's own orders, cart, and returns (and, for a store member, their store's order queue) — and, when the marketplace has enabled agentic checkout and the buyer has turned it on with spending limits, place an order on their behalf. That capability lives on the authenticated connection, never on this anonymous one. If a user wants an agent to do more than build a cart link, tell them to connect their account there.
Known tools 7
search_productsSearch the Klatchit marketplace catalog for products that are for sale right now from at least one seller.
Inferred read-onlyget_productFetch the full public detail for ONE product by its slug: description, images, specifications, brand, category trail, rating, and the complete list of currently purchasable offers from competing sellers.
Inferred read-onlycreate_cart_linkCreate ONE link that, when the USER opens it in their own browser, puts the chosen offers into their own Klatchit shopping cart, ready for them to review and pay for.
Potential side effectssearch_helpSearch Klatchit's own help center — published help articles AND the FAQ — for how the marketplace actually works: policies, fees, returns, shipping, buying, selling, and developer/API topics.
Inferred read-onlyget_help_articleFetch the full markdown body of ONE published Klatchit help article by its slug (the 'slug' field of a search_help hit whose source is 'article').
Inferred read-onlyget_connection_guideReturn step-by-step instructions for connecting a client to Klatchit: which URL to paste, a copy-pasteable config or command snippet, and links to the docs and (for account access) the pages where the human mints an API key or grants an OAuth consent.
Potential side effectsCONNECT 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.klatchit]
url = "https://www.klatchit.com/api/mcp/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"klatchit": {
"type": "http",
"url": "https://www.klatchit.com/api/mcp/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: klatchit
Remote MCP URL: https://www.klatchit.com/api/mcp/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": {
"klatchit": {
"url": "https://www.klatchit.com/api/mcp/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"klatchit": {
"type": "http",
"url": "https://www.klatchit.com/api/mcp/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "klatchit",
"transport": "streamable-http",
"url": "https://www.klatchit.com/api/mcp/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
ENDPOINT 2
https://www.klatchit.com/api/agent/mcp
Known tools 0
No tool metadata was available in the registry cache.
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.klatchit-com]
url = "https://www.klatchit.com/api/agent/mcp"
enabled = true
bearer_token_env_var = "MCP_BEARER_TOKEN"
Authentication is required. Replace the placeholder locally and never commit a secret.
Claude Code
.mcp.json
{
"mcpServers": {
"klatchit-com": {
"type": "http",
"url": "https://www.klatchit.com/api/agent/mcp",
"headers": {
"Authorization": "Bearer YOUR_BEARER_TOKEN"
}
}
}
}
Authentication is required. Replace the placeholder locally and never commit a secret.
Claude Desktop
Settings → Connectors → Add custom connector
Name: klatchit-com
Remote MCP URL: https://www.klatchit.com/api/agent/mcp
Add the URL as a custom connector, then complete its supported authorization flow. Claude Desktop remote connectors are configured in the UI.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"klatchit-com": {
"url": "https://www.klatchit.com/api/agent/mcp",
"headers": {
"Authorization": "Bearer YOUR_BEARER_TOKEN"
}
}
}
}
Authentication is required. Replace the placeholder locally and never commit a secret.
Visual Studio Code
.vscode/mcp.json
{
"servers": {
"klatchit-com": {
"type": "http",
"url": "https://www.klatchit.com/api/agent/mcp",
"headers": {
"Authorization": "Bearer ${input:mcp-token}"
}
}
},
"inputs": [
{
"type": "promptString",
"id": "mcp-token",
"description": "klatchit-com bearer token",
"password": true
}
]
}
Authentication is required. Replace the placeholder locally and never commit a secret.
Generic MCP
Client-specific MCP configuration
{
"name": "klatchit-com",
"transport": "streamable-http",
"url": "https://www.klatchit.com/api/agent/mcp",
"headers": {
"Authorization": "Bearer YOUR_BEARER_TOKEN"
}
}
Authentication is required. Replace the placeholder locally and never commit a secret.
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Loading Trust v2 evidence…
Checking the associated registrable domain. The BuiltWith key remains server-side.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.