Input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- A tool name or description suggests retrieving external content.
Parent endpoint
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.omit-storefront-mcp]
url = "https://pm0.dev/api/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"omit-storefront-mcp": {
"type": "http",
"url": "https://pm0.dev/api/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: omit-storefront-mcp
Remote MCP URL: https://pm0.dev/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": {
"omit-storefront-mcp": {
"url": "https://pm0.dev/api/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"omit-storefront-mcp": {
"type": "http",
"url": "https://pm0.dev/api/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "omit-storefront-mcp",
"transport": "streamable-http",
"url": "https://pm0.dev/api/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
list_products— Search or browse the store's product catalogue.get_product— Fetch full detail for a single product by handle: variants, options, prices, images, description.check_availability— Check whether a variant of a given product can be purchased right now.get_cart— Read the current shopper's cart for this storefront.update_cart— Add, change, or remove a line item on the shopper's cart.start_checkout— Begin the checkout flow for the current cart.agentic_checkout— One-shot helper for AI agents that just want to send a shopper to checkout.