Quick Start
Connect your agent in 3 simple steps
1
Add the MCP server
Configure the MCP server URL in your Claude client or application.
{
"mcpServers": {
"agenticmcpstores": {
"url": "https://agenticmcpstores.com/demo-store/mcp",
"auth": {
"type": "bearer",
"token": "your-api-key"
}
}
}
}2
Search products
Use search_products tool with filters and limits.
{
"tool": "search_products",
"input": {
"query": "laptop",
"limit": 10,
"filters": {
"priceRange": {
"min": 100,
"max": 5000
}
}
}
}3
Complete checkout
Create cart, get shipping rates, and process payment.
// Complete flow
1. create_cart() → cart_id
2. get_shipping_rates(address) → rates[]
3. select_shipping_option(rate_id)
4. complete_checkout(buyerInfo)