INDIVIDUAL MCP TOOL
create_cart
Create a shopping cart from line items; the response includes a continue_url the shopper must open in a browser to review the cart and complete checkout (totals are integers in minor currency units).
LIVE ENDPOINT
https://www.farmaciacanadiana.ro/agent/mcp
Connect to this endpoint to inspect the live schema for create_cart and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description contains a write-action term.
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.imavio-agentconnect]
url = "https://www.farmaciacanadiana.ro/agent/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"imavio-agentconnect": {
"type": "http",
"url": "https://www.farmaciacanadiana.ro/agent/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: imavio-agentconnect
Remote MCP URL: https://www.farmaciacanadiana.ro/agent/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": {
"imavio-agentconnect": {
"url": "https://www.farmaciacanadiana.ro/agent/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"imavio-agentconnect": {
"type": "http",
"url": "https://www.farmaciacanadiana.ro/agent/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "imavio-agentconnect",
"transport": "streamable-http",
"url": "https://www.farmaciacanadiana.ro/agent/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
search_catalog— Search the store catalogue with a free-text query, optional category/price filters and cursor pagination; all prices are integers in minor currency units.lookup_catalog— Fetch up to 50 products in one call by their ids (SKUs); all prices are integers in minor currency units.get_product— Get one product with full details and variants by its id (SKU); all prices are integers in minor currency units.update_cart— Replace the line items of an existing cart (REPLACE semantics: any line not sent is removed; an empty list empties the cart); totals are integers in minor currency units.get_cart— Get the current snapshot of a cart by its id (status, line items and totals as integers in minor currency units).