Superprecio MCP Server
This MCP server transforms AI assistants into expert price comparison tools for Argentine supermarkets, providing real-time access to product prices, deals, and availability across multiple stores.
Capabilities:
Product Search & Discovery
Search products by name across all supermarkets using natural language queries in Spanish (handles accents, partial matches, brands)
Search by barcode/EAN using 13-digit codes for exact product matches
Sort results by top sales, lowest price, or highest price
Price Intelligence
Compare prices across stores to identify the best deals, potential savings, and price differences
Discover current promotions and discounts by category (dairy, cereals, beverages, etc.)
Analyze average prices and calculate savings opportunities
Notifications & Alerts
Send push notifications about price drops, deals, or updates (broadcast or targeted)
Subscribe devices to receive automatic price alerts and special promotions
Include product links, images, and metadata in notifications via Firebase Cloud Messaging
Supermarket Information
Access lists of available supermarket chains
Retrieve detailed information about specific supermarkets
AI Assistant Enhancement
Transform into an Argentina shopping expert using the
price_expertpromptEnable conversational queries like "find the cheapest rice" or "compare milk prices"
Perform multi-store analysis automatically
Technical Features: Configurable API endpoints, adjustable result limits and timeouts, debug logging, and Firebase integration.
Enables sending push notifications about deals and subscribing devices to price alerts through Firebase Cloud Messaging
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Superprecio MCP Serverbusca el precio de leche descremada en todos los supermercados"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Superprecio MCP Server
A Model Context Protocol (MCP) server that provides AI assistants with access to Superprecio's price comparison functionality for supermarkets in Argentina (with plans to expand to all Latin America).
Overview
This MCP server transforms Claude (or any MCP-compatible AI assistant) into an expert price comparison assistant for Argentina. It provides real-time access to product prices, deals, and availability across multiple supermarkets.
Related MCP server: mercadolibre-mcp
Features
🛠️ Tools
The server provides 6 powerful tools:
search_products - Search for products by name across all supermarkets
search_by_code - Find products by EAN/barcode
compare_prices - Compare prices and find the best deals
get_best_deals - Discover current promotions and discounts
send_notification - Send push notifications about deals (requires Firebase)
subscribe_device - Subscribe devices to price alerts (requires Firebase)
📚 Resources
supermarket://list - List of all available supermarkets
supermarket://[id]/info - Detailed information about a specific supermarket
đź’¬ Prompts
price_expert - Transform Claude into an Argentina shopping expert
Prerequisites
Node.js 18.0.0 or higher
Access to Superprecio API (production) or a local instance
Installation
Option 1: Use with npx (Recommended)
Once published to npm, you can use directly with:
npx superprecio-mcpOption 2: Install Globally
npm install -g superprecio-mcpOption 3: Local Development
# Clone the repository
git clone https://github.com/bunkerapps/superprecio_mcp.git
cd superprecio_mcp
# Install dependencies
npm install
# Build the project
npm run build
# Run the server
npm startConfiguration
Create a .env file in the project root:
# Copy the example file
cp .env.example .envEdit .env with your settings:
# Superprecio API URL (required)
# Use production API or your local instance
SUPERPRECIO_API_URL=https://superprecio.ar
# Request timeout in milliseconds (optional)
REQUEST_TIMEOUT=30000
# Enable debug logging (optional)
DEBUG=falseUsage with Claude Desktop
Add this server to your Claude Desktop configuration:
macOS
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"superprecio": {
"command": "npx",
"args": ["-y", "superprecio-mcp"]
}
}
}Note: The server uses https://superprecio.ar by default. For local development, add:
"env": {
"SUPERPRECIO_API_URL": "http://localhost:3000"
}Windows
Edit %APPDATA%/Claude/claude_desktop_config.json with the same configuration.
Using Local Installation
If you installed locally or are developing:
{
"mcpServers": {
"superprecio": {
"command": "node",
"args": ["/absolute/path/to/superprecio_mcp/build/index.js"]
}
}
}For local development, override the API URL:
"env": {
"SUPERPRECIO_API_URL": "http://localhost:3000"
}Example Conversations
Once configured, you can ask Claude:
Search for Products
You: "Busca el arroz más barato"
Claude: *Uses search_products and compare_prices tools*
"El arroz más barato está en [Supermercado] por $2,450..."Compare Prices
You: "Compara precios de leche en todos los supermercados"
Claude: *Uses compare_prices tool*
"Aquà está la comparación de precios de leche:
1. Supermercado A: $850
2. Supermercado B: $750 🏆 MEJOR PRECIO
3. Supermercado C: $890
¡Puedes ahorrar $140 comprando en Supermercado B!"Find Best Deals
You: "¿Cuáles son las mejores ofertas de hoy en cereales?"
Claude: *Uses get_best_deals tool*
"Aquà están las mejores ofertas en cereales:
1. Corn Flakes en [Supermercado] - $2,100 (15% OFF)
2. ..."Use the Price Expert Prompt
You: "Use the price_expert prompt"
Claude: *Becomes an Argentina shopping expert*
"¡Hola! Soy tu experto en supermercados de Argentina.
ÂżCĂłmo puedo ayudarte a ahorrar dinero hoy?"API Reference
Tools
search_products
{
query: string; // Product name (e.g., "leche descremada")
maxResults?: number; // Results per store (1-50, default: 9)
sortBy?: string; // "OrderByTopSaleDESC" | "OrderByPriceASC" | "OrderByPriceDESC"
}search_by_code
{
code: string; // EAN/barcode (usually 13 digits)
}compare_prices
{
productName: string; // Product to compare
maxResults?: number; // Results to analyze per store (1-20, default: 5)
}get_best_deals
{
category: string; // Category (e.g., "lácteos", "cereales")
maxResults?: number; // Deals per store (1-30, default: 10)
}send_notification
{
title: string; // Notification title
message: string; // Notification body
deviceToken?: string; // Optional: specific device (else broadcasts)
data?: object; // Optional: custom data
}subscribe_device
{
deviceToken: string; // Firebase Cloud Messaging token
}Resources
supermarket://list- Returns JSON with all supermarketssupermarket://[id]/info- Returns JSON with specific supermarket details
Prompts
price_expert- Takes optionalfocusargument
Development
# Install dependencies
npm install
# Watch mode (rebuilds on changes)
npm run dev
# Build for production
npm run build
# Run built server
npm startArchitecture
superprecio_mcp/
├── src/
│ ├── index.ts # Main MCP server
│ ├── client/
│ │ └── superPrecioApi.ts # HTTP client for Superprecio API
│ ├── tools/ # MCP tool implementations
│ ├── resources/ # MCP resource handlers
│ ├── prompts/ # MCP prompt templates
│ └── types/ # TypeScript type definitions
├── build/ # Compiled JavaScript
└── package.jsonHow It Works
MCP Server: Runs as a stdio-based server that communicates with Claude
HTTP Client: Makes requests to your Superprecio API instance
Tools: Expose Superprecio functionality as MCP tools
Resources: Provide access to supermarket data
Prompts: Transform Claude into a shopping expert
Troubleshooting
"Could not connect to Superprecio API"
Verify API is accessible:
curl https://superprecio.arCheck
SUPERPRECIO_API_URLin your configurationEnsure there are no firewall issues
"Unknown tool" errors
Restart Claude Desktop after configuration changes
Verify the MCP server is running (check Claude Desktop logs)
Debug Mode
Enable debug logging:
DEBUG=trueThis will log all API requests/responses to stderr.
Contributing
Contributions are welcome! Please:
Fork the repository
Create a feature branch
Make your changes
Add tests if applicable
Submit a pull request
License
MIT License - see LICENSE file for details
Credits
Built with Model Context Protocol SDK
Integrates with Superprecio
Support
For issues and questions:
GitHub Issues: https://github.com/bunkerapps/superprecio_mcp/issues
Superprecio Website: https://superprecio.ar
Made with ❤️ in Argentina for Latin American shoppers
Available Tools
15 toolsadd_items_to_listA
Add products to an existing shopping list.
You can add multiple items at once, each with:
Product name (required)
Barcode for exact matching (optional)
Quantity (default: 1)
Notes for specifications (optional)
Perfect for building up your shopping list before optimizing.
| Name | Required | Description | Default |
|---|---|---|---|
| listId | Yes | ID of the shopping list to add items to | |
| items | Yes | Items to add to the list |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It successfully indicates this is a mutation operation ('Add products') and mentions batch capability ('multiple items at once'), but doesn't address important behavioral aspects like error handling, idempotency, permissions needed, or what happens when adding duplicate items. The description adds some value but leaves significant gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is efficiently structured with a clear purpose statement followed by bullet points for item details and a final sentence providing usage context. Every sentence earns its place, with no redundant information or unnecessary elaboration. The bullet format enhances readability without sacrificing conciseness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a mutation tool with no annotations and no output schema, the description provides adequate basic information about what the tool does but lacks important contextual details. It doesn't describe the return value format, error conditions, or system behavior when items are added. The description is complete enough for basic understanding but insufficient for robust agent operation without additional trial-and-error learning.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 100% schema description coverage, the schema already documents all parameters thoroughly. The description adds minimal value beyond the schema by listing the same four item fields with slightly different wording, but doesn't provide additional semantic context like examples of valid product names beyond what's in the schema or clarification about barcode format requirements.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Add products') and target resource ('to an existing shopping list'), distinguishing it from sibling tools like 'create_shopping_list' (creates new lists) and 'optimize_shopping_list' (modifies existing lists differently). The verb+resource combination is precise and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool ('Perfect for building up your shopping list before optimizing'), which implicitly suggests it should be used before the 'optimize_shopping_list' sibling tool. However, it doesn't explicitly state when NOT to use it or name specific alternatives for similar operations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
compare_pricesB
Compare prices for a product across all supermarkets and find the best deal.
This tool analyzes prices and provides:
Lowest price and which supermarket has it
Highest price for comparison
Average price across all stores
Potential savings
Price differences between stores
Perfect for making informed buying decisions and finding the best deals.
| Name | Required | Description | Default |
|---|---|---|---|
| productName | Yes | Product name to compare (e.g., "arroz tio pelon") | |
| maxResults | No | Number of results to analyze per store (default: 5) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It describes what the tool provides (lowest price, highest price, average, savings, differences) but doesn't disclose behavioral traits like whether it requires authentication, rate limits, data freshness, or error conditions. The description adds value by outlining outputs but misses key operational context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and front-loaded with the core purpose in the first sentence. The bulleted list efficiently details outputs, and the final sentence reinforces use case. Minor redundancy exists (e.g., 'find the best deal' and 'best deals'), but overall structure is clear with minimal waste.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations and no output schema, the description partially compensates by listing output details. However, for a tool with 2 parameters and complex price comparison logic, it lacks completeness regarding behavioral constraints (e.g., data sources, update frequency) and error handling. It's adequate but has clear gaps in operational context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, providing clear parameter documentation. The description doesn't add meaning beyond the schema (e.g., it doesn't explain how 'productName' matching works or 'maxResults' implications). With high schema coverage, baseline 3 is appropriate as the description doesn't compensate but doesn't detract either.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verbs ('compare prices', 'find the best deal') and resources ('product across all supermarkets'). It distinguishes from siblings like 'get_best_deals' by focusing on price comparison for a specific product rather than general deals, and from 'search_products' by emphasizing comparative analysis rather than basic search.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context ('perfect for making informed buying decisions') but doesn't explicitly state when to use this tool versus alternatives like 'get_best_deals' (which might show deals without product-specific comparison) or 'search_products' (which might return product info without price analysis). No explicit exclusions or prerequisites are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_shopping_listA
Create a new shopping list to organize your purchases.
You can create an empty list and add items later, or create a list with items right away. This is useful for planning your shopping and then optimizing which supermarket to buy from.
Features:
Create named lists (e.g., "Weekly groceries", "Party supplies")
Add optional description
Include initial items with quantities
Link to user ID (optional)
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name of the shopping list (e.g., "Weekly groceries", "Monthly shopping") | |
| description | No | Optional description of what this list is for | |
| userId | No | Optional user ID to associate this list with | |
| items | No | Optional initial items to add to the list |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. While it mentions the tool creates lists and includes features like linking to user IDs, it lacks critical behavioral details such as permission requirements, whether creation is idempotent, error conditions, or what the response contains. For a creation tool with zero annotation coverage, this leaves significant gaps in understanding how the tool behaves.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured and appropriately sized, starting with a clear purpose statement followed by usage flexibility and a bulleted feature list. While the bullet points are helpful, the second sentence about supermarket optimization feels slightly tangential and could be more tightly integrated with the core functionality.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (creation with optional nested items), no annotations, and no output schema, the description is partially complete. It covers the basic purpose and parameters but lacks behavioral transparency and output details. For a creation tool, it should ideally mention what happens on success (e.g., returns list ID) or failure, making it adequate but with clear gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description adds some semantic context beyond the schema, such as explaining the purpose ('organize your purchases') and listing features that map to parameters (e.g., 'include initial items with quantities'). However, with 100% schema description coverage, the schema already documents all parameters thoroughly, so the description provides only marginal additional value without explaining parameter interactions or constraints.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verbs ('create a new shopping list') and resource ('shopping list'), distinguishing it from siblings like 'get_shopping_lists' (read) and 'remove_shopping_list' (delete). It explicitly mentions creating both empty lists and lists with initial items, making the scope unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context on when to use this tool ('useful for planning your shopping'), including the flexibility to create empty lists or lists with items. However, it doesn't explicitly state when NOT to use it or mention alternatives like 'add_items_to_list' for adding items to existing lists, which would be helpful for sibling differentiation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
find_nearby_supermarketsA
Find supermarkets near your current location using GPS coordinates.
Discover which supermarkets are closest to you!
Features:
Search by latitude and longitude
Customizable search radius (default: 5km)
Get distance in km and meters
See full addresses and contact info
Opening hours when available
Perfect for:
Finding nearby stores after optimizing your shopping list
Planning your shopping route
Discovering new supermarkets in your area
Getting directions to the best-priced store
Example coordinates for Buenos Aires city center:
Latitude: -34.6037
Longitude: -58.3816
The tool uses the Haversine formula to calculate accurate distances.
| Name | Required | Description | Default |
|---|---|---|---|
| latitude | Yes | Latitude coordinate (-90 to 90) | |
| longitude | Yes | Longitude coordinate (-180 to 180) | |
| radiusKm | No | Search radius in kilometers (default: 5km) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure and does this well. It reveals key behavioral traits: the tool calculates distances using the Haversine formula, provides distance in km/meters, returns addresses and contact info, includes opening hours when available, and has a default search radius of 5km. It doesn't mention rate limits, authentication needs, or data freshness concerns.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately front-loaded with the core purpose, but contains some redundancy and marketing language that doesn't earn its place. Sentences like 'Discover which supermarkets are closest to you!' and the 'Perfect for' bullet points add little operational value. The Haversine formula explanation is useful but could be more concise. Overall structure is logical but could be tighter.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity, no annotations, and no output schema, the description provides good contextual completeness. It explains what the tool does, how it works (Haversine formula), what information it returns (addresses, contact info, opening hours, distances), and includes practical examples. The main gap is the lack of output format specification, which would be helpful given no output schema exists.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already fully documents all three parameters (latitude, longitude, radiusKm). The description adds minimal value beyond the schema - it mentions 'Search by latitude and longitude' and 'Customizable search radius (default: 5km)' but provides no additional semantic context about parameter usage or implications. The example coordinates are helpful but don't fundamentally enhance parameter understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verbs ('Find supermarkets near your current location') and resource ('supermarkets'), distinguishing it from sibling tools like 'search_products' or 'get_best_deals' which focus on products/deals rather than physical store locations. It explicitly mentions using GPS coordinates for location-based searching.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool ('Finding nearby stores after optimizing your shopping list', 'Planning your shopping route', 'Discovering new supermarkets in your area'), but doesn't explicitly state when NOT to use it or mention alternatives among the sibling tools. The 'Perfect for' section gives good usage scenarios without exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_best_dealsB
Find the best deals and discounts currently available in supermarkets.
This tool helps you discover:
Products on sale
Best price-to-value items
Popular deals
Discount opportunities
Great for budget shopping and finding savings across all stores.
| Name | Required | Description | Default |
|---|---|---|---|
| category | Yes | Product category or type to find deals for (e.g., "lácteos", "cereales", "bebidas") | |
| maxResults | No | Number of deals per supermarket (default: 10) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It mentions discovering deals but fails to disclose key behavioral traits such as whether results are real-time, how deals are ranked, if authentication is needed, or any rate limits. This is a significant gap for a tool with potential complexity in data sourcing and presentation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and front-loaded, starting with a clear purpose statement followed by bullet points for specific features and a concluding use case. It avoids redundancy, though the bullet points could be slightly more concise, and every sentence contributes to understanding the tool's value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of annotations and output schema, the description is incomplete. It does not explain what the tool returns (e.g., deal details, supermarket names, prices), how results are structured, or any limitations (e.g., geographic scope, data freshness). For a deal-finding tool with potential complexity, this leaves significant gaps for an AI agent to use it effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters ('category' and 'maxResults') with clear descriptions and constraints. The description adds no additional parameter semantics beyond what the schema provides, such as examples of categories or context for maxResults, meeting the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose as finding best deals and discounts in supermarkets, specifying resources like products on sale and best price-to-value items. It distinguishes from siblings like 'compare_prices' or 'search_products' by focusing on curated deals rather than general price comparison or product search, though it could be more explicit about the distinction.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for budget shopping and finding savings, suggesting when to use it (e.g., for deals rather than general product lookup). However, it lacks explicit guidance on when to use this versus alternatives like 'compare_prices' or 'search_products', leaving some ambiguity in tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_my_alertsA
Get all your active price alerts with their current status.
View all products you're monitoring and see:
Current prices vs. target prices
Which alerts have been triggered
How close you are to your target price
Last time prices were checked
Perfect for:
Reviewing all your alerts
Finding triggered alerts (good deals!)
Managing your watchlist
| Name | Required | Description | Default |
|---|---|---|---|
| userId | No | Optional: Filter alerts by user ID | |
| isActive | No | Optional: Filter by active/inactive alerts (default: show all) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It describes what information is returned (current prices, target prices, triggered status, proximity to target, last check time), which is helpful. However, it lacks details on permissions, rate limits, pagination, or error handling, leaving gaps for a read operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured and front-loaded with the core purpose, followed by bullet points for details and a 'Perfect for' section for usage context. Every sentence adds value without repetition, making it efficient and easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations and no output schema, the description does a good job explaining what the tool returns (e.g., current vs. target prices, triggered alerts). However, it could be more complete by specifying return format or data structure, especially since there's no output schema to rely on.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, so the baseline is 3. The description adds value by implying default behavior ('Get all your active price alerts') and context for filtering, such as focusing on 'active' alerts and 'your' data, which complements the schema's optional parameters without redundancy.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Get all your active price alerts') and resource ('price alerts with their current status'), distinguishing it from siblings like 'set_price_alert' or 'remove_price_alert'. It explicitly defines the scope as 'your' alerts, making the purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool ('Perfect for: Reviewing all your alerts, Finding triggered alerts, Managing your watchlist'), which helps differentiate it from tools like 'get_best_deals' or 'search_products'. However, it does not explicitly state when NOT to use it or name specific alternatives for overlapping functions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_shopping_listsB
Get all shopping lists, optionally filtered by user.
Returns a list of all active shopping lists with their items. Useful for:
Viewing all your saved lists
Finding a specific list to optimize
Managing multiple shopping lists
| Name | Required | Description | Default |
|---|---|---|---|
| userId | No | Optional: Filter lists by user ID |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions that the tool 'Returns a list of all active shopping lists with their items,' which clarifies the output format and scope ('active'). However, it fails to disclose critical behavioral traits such as whether this is a read-only operation (implied but not stated), potential rate limits, authentication needs, or pagination handling. For a tool with zero annotation coverage, this is a significant gap, warranting a score of 2.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and front-loaded: the first sentence states the core purpose, followed by output details and a 'Useful for' section. Each sentence adds value, such as clarifying the return format and use cases. However, the bullet points could be more concise (e.g., 'Finding a specific list to optimize' is somewhat verbose), and there's minor redundancy in emphasizing 'all' lists. Overall, it's efficient but not perfectly streamlined, earning a score of 4.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (1 optional parameter, no output schema, no annotations), the description is moderately complete. It covers the purpose, output format, and use cases, but lacks details on behavioral aspects like safety (read-only vs. mutation) or error handling. Without annotations or output schema, the description should do more to compensate, such as explicitly stating it's a read operation or mentioning any limitations. This results in a score of 3, as it's adequate but has clear gaps for a tool with no structured support.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with the parameter 'userId' documented as 'Optional: Filter lists by user ID.' The description adds value by reinforcing this optional filtering ('optionally filtered by user') and implying it returns 'all active shopping lists' when no filter is applied. However, it doesn't provide additional semantics beyond what the schema already covers, such as format details or examples. With high schema coverage, the baseline is 3, which is appropriate here.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Get all shopping lists, optionally filtered by user.' This specifies the verb ('Get') and resource ('shopping lists') with scope ('all'), and it distinguishes from siblings like 'create_shopping_list' or 'remove_shopping_list' by focusing on retrieval. However, it doesn't explicitly differentiate from potential list-viewing alternatives (e.g., 'get_my_alerts' might overlap in context), keeping it at 4 rather than 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides implied usage through 'Useful for' bullet points (e.g., 'Viewing all your saved lists'), which suggests contexts like management or optimization. However, it lacks explicit guidance on when to use this tool versus alternatives like 'search_products' or 'get_est_deals' for related tasks, and it doesn't specify exclusions or prerequisites. This results in a score of 3 for implied but incomplete guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
optimize_shopping_listA
🔥 OPTIMIZE YOUR SHOPPING - Find the best supermarket for your entire shopping list!
This is the most powerful feature. It:
Searches for every product in your list across ALL supermarkets
Calculates the total cost at each supermarket
Shows you exactly how much you'll save by choosing the cheapest option
Provides a complete breakdown with prices per item
Perfect for:
Maximizing your savings
Planning where to shop
Comparing complete shopping costs
Making informed decisions
The tool searches ALL active supermarkets in Argentina and tells you which one gives you the best total price for your entire basket.
| Name | Required | Description | Default |
|---|---|---|---|
| listId | Yes | ID of the shopping list to optimize |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It describes the tool's actions (searching across all supermarkets, calculating total costs, showing savings) but lacks details on permissions, rate limits, error handling, or what happens if no supermarkets are active. For a tool that likely involves external API calls and calculations, this is a significant gap in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with a clear purpose statement, but it includes repetitive elements (e.g., 'Perfect for' list could be condensed) and uses excessive formatting (🔥, ALL CAPS). Some sentences, like 'This is the most powerful feature', do not add essential information. It could be more streamlined while retaining key details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of a tool that searches across multiple supermarkets and calculates costs, with no annotations and no output schema, the description is moderately complete. It explains the tool's high-level behavior and benefits but lacks details on output format, error cases, or performance considerations. For a tool with significant computational and external dependencies, more context would be helpful.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with the single parameter 'listId' documented as 'ID of the shopping list to optimize'. The description does not add any additional meaning beyond this, such as format examples or constraints. Since schema coverage is high, the baseline score of 3 is appropriate, as the description doesn't compensate but also doesn't need to given the schema's clarity.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verbs ('find the best supermarket', 'searches for every product', 'calculates the total cost') and distinguishes it from siblings like 'compare_prices' or 'find_nearby_supermarkets' by emphasizing optimization of an entire shopping list across all supermarkets. It explicitly mentions the resource (shopping list) and scope (all supermarkets in Argentina).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool ('perfect for maximizing savings, planning where to shop, comparing complete shopping costs'), but it does not explicitly state when not to use it or name specific alternatives among siblings. It implies usage for entire shopping list optimization rather than individual product comparisons, which helps differentiate from tools like 'compare_prices'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
remove_price_alertA
Delete a price alert.
Stop monitoring a product's price. This permanently removes the alert.
| Name | Required | Description | Default |
|---|---|---|---|
| alertId | Yes | ID of the price alert to delete |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses that the action 'permanently removes the alert', indicating irreversibility, and clarifies it stops monitoring. However, it lacks details on permissions needed, error conditions, or confirmation behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three short, front-loaded sentences with zero waste: the first states the action, the second explains the effect, and the third warns of permanence. Each sentence adds critical information efficiently.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations, no output schema, and a simple single-parameter input, the description is mostly complete for a deletion tool. It covers purpose and behavioral impact but could improve by mentioning error cases or success indicators.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, so the schema already documents the 'alertId' parameter. The description does not add specific parameter details beyond implying the alert exists, but with 0 parameters needing extra explanation, it meets the baseline of 4 for adequate coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states the verb 'Delete' and resource 'price alert' in the first sentence, then elaborates with 'Stop monitoring a product's price' to clarify the action. It clearly distinguishes from sibling tools like 'set_price_alert' (create) and 'get_my_alerts' (read).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when you want to stop monitoring a product's price, but does not explicitly state when to use this vs. alternatives like 'get_my_alerts' for viewing alerts or 'set_price_alert' for creating them. No exclusions or prerequisites are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
remove_shopping_listA
Delete a shopping list.
This removes the list and all its items from the active lists. The list is soft-deleted (marked as inactive) so it can be recovered if needed.
| Name | Required | Description | Default |
|---|---|---|---|
| listId | Yes | ID of the shopping list to delete |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively explains that this is a destructive operation ('removes the list and all its items'), clarifies the deletion type ('soft-deleted'), and notes recoverability ('can be recovered if needed'). However, it lacks details on permissions, error conditions, or confirmation prompts.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose in the first sentence, followed by two concise sentences that add critical behavioral context. Every sentence earns its place by clarifying scope and deletion behavior without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a destructive tool with no annotations and no output schema, the description provides adequate basics (purpose and soft-delete behavior) but lacks completeness. It doesn't cover error handling, return values, or integration with sibling tools, leaving gaps for an agent to infer operational details.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with the single parameter 'listId' clearly documented. The description adds no additional parameter semantics beyond what the schema provides, such as format examples or constraints, but this is acceptable given the high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Delete a shopping list') and resource ('shopping list'), distinguishing it from siblings like 'create_shopping_list' or 'get_shopping_lists'. It goes beyond the tool name by specifying what gets removed ('the list and all its items from the active lists').
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool versus alternatives is provided. While it's clear this is for deletion, there's no mention of prerequisites (e.g., list must exist), recovery options, or when to choose this over other list-management tools like 'optimize_shopping_list'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_by_codeA
Search for a specific product by its EAN/barcode across all supermarkets.
This tool is perfect for:
Finding exact product matches
Scanning barcodes
Price checking specific items
Verifying product availability
The barcode/EAN search will find the exact same product across different stores, making it ideal for precise price comparisons.
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | Product EAN/barcode (numeric code, usually 13 digits) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes the core behavior (exact product matching across supermarkets) and outcome (price comparisons). However, it lacks details about rate limits, error conditions, authentication requirements, or what happens when no matches are found. The description doesn't contradict any annotations since none exist.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with a clear opening statement followed by bullet points for use cases and a concluding sentence about outcomes. It's appropriately sized for the tool's complexity. However, the bullet points could be more concise, and some redundancy exists between 'finding exact product matches' and 'exact same product across different stores.'
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter search tool with no annotations and no output schema, the description provides adequate context about what the tool does and when to use it. However, it doesn't describe the return format (what data comes back), error handling, or limitations. Given the lack of structured output documentation, more completeness would be beneficial.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, clearly documenting the single 'code' parameter as a numeric EAN/barcode. The description adds minimal value beyond the schema, only reinforcing that it searches by 'EAN/barcode' without providing additional format details or examples. This meets the baseline expectation when schema coverage is complete.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verbs ('search for a specific product') and resource ('by its EAN/barcode across all supermarkets'). It explicitly distinguishes this tool from sibling tools like 'search_products' by focusing on exact barcode-based matching rather than general product searches.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool ('perfect for finding exact product matches, scanning barcodes, price checking specific items, verifying product availability'). It distinguishes from 'search_products' by emphasizing exact matching across stores. However, it doesn't explicitly state when NOT to use it or mention specific alternatives like 'compare_prices' for broader comparisons.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_productsA
Search for products by name or description across all Argentina supermarkets.
This tool searches multiple supermarkets simultaneously and returns price comparisons. It's perfect for finding the best deals and comparing prices across different stores.
The search is smart and handles:
Spanish characters and accents (café, leche, etc.)
Partial matches
Common product names
Brand names
Results include:
Product images
Prices
Direct links to products
Supermarket information
Availability across stores
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Product name or description to search for (e.g., "leche descremada", "arroz integral", "coca cola") | |
| maxResults | No | Maximum number of results per supermarket (1-50, default: 9) | |
| sortBy | No | How to sort the results | OrderByTopSaleDESC |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes key traits: it searches multiple supermarkets simultaneously, handles Spanish characters/accents, partial matches, and common/brand names, and returns structured results (images, prices, links, etc.). It lacks details on rate limits, authentication needs, or error handling, but covers core functionality well.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured and front-loaded with the core purpose, followed by details on functionality and results. It uses bullet points for clarity, but could be slightly more concise by integrating some points (e.g., combining search handling features into a single sentence). Overall, it avoids redundancy and each sentence adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (3 parameters, no output schema, no annotations), the description is largely complete. It covers purpose, usage, behavioral traits, and result format. However, it lacks output schema details (e.g., structure of returned data) and does not mention potential limitations like API errors or pagination, leaving minor gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, so the schema already documents all parameters (query, maxResults, sortBy) thoroughly. The description adds no additional parameter semantics beyond what the schema provides, such as examples or edge cases, meeting the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verbs ('search for products') and resources ('across all Argentina supermarkets'), distinguishing it from siblings like 'search_by_code' (which searches by code) and 'compare_prices' (which may compare specific products). It explicitly mentions searching by name or description and returning price comparisons.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool: for finding best deals and comparing prices across stores. However, it does not explicitly state when not to use it or name alternatives (e.g., 'search_by_code' for barcode searches or 'get_best_deals' for curated deals), leaving some ambiguity about sibling tool differentiation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
send_notificationA
Send a push notification to a specific device or broadcast to all subscribed devices.
This tool can:
Send personalized notifications to specific devices
Broadcast alerts to all users
Include custom data (like product links, images, etc.)
Notify about price drops, deals, or important updates
Note: Requires Firebase Cloud Messaging setup on the Superprecio server.
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Notification title | |
| message | Yes | Notification body/message | |
| deviceToken | No | Optional: specific device token to send to. If not provided, broadcasts to all devices. | |
| data | No | Optional: additional data to include (e.g., product URL, image URL) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It does well by mentioning the Firebase setup requirement and describing broadcast vs targeted delivery modes. However, it lacks details about rate limits, error conditions, authentication needs, or what happens when deviceToken is invalid - important for a notification tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured and appropriately sized. The first sentence states the core purpose, followed by a bulleted list of capabilities, and ends with an important prerequisite note. Every sentence adds value with no redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a notification tool with 4 parameters, no annotations, and no output schema, the description is adequate but has gaps. It covers the main purpose and usage context well, but lacks information about return values, error handling, or detailed behavioral constraints that would be important for reliable tool invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 100% description coverage, so the baseline is 3. The description adds value by explaining the semantic meaning of parameters: deviceToken determines targeted vs broadcast delivery, and data can include product links/images. It also clarifies that title and message are required, though this is already in the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verbs ('send', 'broadcast') and resources ('push notification', 'device', 'subscribed devices'). It distinguishes this tool from siblings like 'subscribe_device' or 'set_price_alert' by focusing on notification delivery rather than subscription or alert creation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context about when to use this tool (for sending notifications with custom data about deals/updates) and mentions the Firebase Cloud Messaging prerequisite. However, it doesn't explicitly state when NOT to use it or name specific alternatives among the sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
set_price_alertA
Set a personalized price alert for a product.
Get notified when a product reaches your target price!
Features:
Monitor any product by name or barcode
Set your desired price target
Automatic price checking across all supermarkets
Get alerts when price drops below your target
Perfect for:
Waiting for sales on expensive items
Tracking price drops
Budget-conscious shopping
Never missing a good deal
Example: "Alert me when Coca Cola 2.25L drops below $800"
| Name | Required | Description | Default |
|---|---|---|---|
| productName | Yes | Product name to monitor (e.g., "Coca Cola 2.25L", "Arroz integral") | |
| targetPrice | Yes | Target price in pesos - alert when product reaches or goes below this price | |
| barcode | No | Optional barcode/EAN for exact product matching | |
| userId | No | Optional user ID to associate this alert with | |
| notifyEnabled | No | Enable push notifications when alert triggers (default: true) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden. It discloses key behavioral traits: the tool creates alerts that trigger automatically when prices drop below targets, monitors across supermarkets, and sends notifications. However, it lacks details on persistence (how long alerts last), error handling, authentication requirements (though userId is optional), or rate limits, which are important for a creation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with clear sections (Features, Perfect for, Example) and front-loaded with the core purpose. However, some bullet points (e.g., 'Budget-conscious shopping') are slightly redundant with others, and the marketing tone ('Never missing a good deal') adds minor fluff that doesn't aid tool selection.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a creation tool with no annotations and no output schema, the description is moderately complete. It covers the what and why but lacks details on behavioral constraints (e.g., limits on alerts per user), error cases, or response format. Given the complexity of setting up automated monitoring, more operational context would be helpful for an agent to use it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all 5 parameters thoroughly. The description adds minimal value beyond the schema—it mentions monitoring by 'name or barcode' and 'target price' but doesn't explain parameter interactions or provide additional context like format examples beyond the schema's descriptions. Baseline 3 is appropriate when schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('Set a personalized price alert') and resource ('for a product'). It distinguishes from siblings like 'get_my_alerts' (which retrieves alerts) and 'remove_price_alert' (which deletes alerts) by focusing on creation. The opening sentence directly answers 'what does this tool do?'
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The 'Perfect for:' section provides clear context on when to use this tool (waiting for sales, tracking price drops, budget shopping). However, it doesn't explicitly state when NOT to use it or name specific alternatives like 'compare_prices' for immediate price checking or 'get_best_deals' for finding current discounts, leaving some ambiguity about tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
subscribe_deviceA
Subscribe a device to receive push notifications about deals and price alerts.
This tool registers a device token with the Superprecio notification system. Once subscribed, devices will receive:
Price drop alerts
Special deal notifications
New product announcements
Custom promotional messages
Note: Requires a valid Firebase Cloud Messaging device token.
| Name | Required | Description | Default |
|---|---|---|---|
| deviceToken | Yes | Firebase Cloud Messaging device token |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It clearly indicates this is a registration/mutation operation (implied by 'subscribe' and 'registers'), describes what happens after subscription (types of notifications received), and mentions the authentication requirement (Firebase token). However, it doesn't cover important behavioral aspects like whether the subscription is persistent, if there are rate limits, or what happens on duplicate subscriptions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is perfectly structured and front-loaded with the core purpose in the first sentence. Each subsequent sentence adds valuable information about what notifications will be received and the token requirement. There's zero wasted text, and the bulleted list efficiently communicates the notification types without unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a mutation tool with no annotations and no output schema, the description does a reasonable job covering the basic operation and requirements. However, it lacks information about the return value (success/failure indicators, subscription ID), error conditions, or persistence details that would be important for an agent to use this tool effectively in production scenarios.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 100% description coverage for its single parameter, so the baseline is 3. The description adds meaningful context by explaining that the deviceToken parameter must be a 'valid Firebase Cloud Messaging device token' and connects it to the notification system registration, providing additional semantic understanding beyond the schema's technical specification.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Subscribe a device') and resource ('to receive push notifications about deals and price alerts'), distinguishing it from sibling tools like 'set_price_alert' or 'send_notification' which handle different notification-related functions. It explicitly defines the scope of notifications the device will receive.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool (registering a device for notifications) and includes a prerequisite note about requiring a valid Firebase token. However, it doesn't explicitly state when NOT to use it or name specific alternatives among the sibling tools for similar notification-related tasks.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool has a clearly distinct purpose with no significant overlap. For example, 'add_items_to_list' is for adding products to an existing list, 'create_shopping_list' is for creating new lists, and 'optimize_shopping_list' is for finding the best supermarket for an entire list. The descriptions reinforce these distinct roles, making it easy for an agent to choose the right tool.
All tool names follow a consistent snake_case pattern with clear verb-noun structures, such as 'add_items_to_list', 'compare_prices', and 'set_price_alert'. There are no deviations in naming conventions, making the set predictable and easy to understand at a glance.
With 15 tools, this server is well-scoped for its purpose of shopping optimization and price comparison in Argentina. Each tool serves a specific function, from list management to price alerts and notifications, without feeling bloated or insufficient for the domain.
The tool set provides comprehensive coverage for shopping optimization, including CRUD operations for lists and alerts, price comparison, product search, location-based supermarket finding, and notification management. There are no obvious gaps; agents can handle the full lifecycle from planning to purchasing and monitoring deals.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Product search for AI agents: Amazon + Shopify, cart-to-checkout buy path. Pay-per-call, no API key.
AI-powered product search, affiliate links, and price negotiation for e-commerce platforms
AMZScout Skill + MCP gives AI agents live access to real Amazon marketplace data across 14 Amazon marketplaces. Analyze any ASIN, validate product ideas, research niches, compare competitors, discover profitable keywords, and build data-driven PPC strategies using trusted Amazon insights instead of AI assumptions. Works with Claude, ChatGPT, Cursor, and any other MCP-compatible AI client. To connect, you'll need an AMZScout API plan and authorize your account. Get access and view pricing here: https://learn.amzscout.net/amazon-product-api-for-ai-agents
Pay-per-use tool marketplace for AI agents. Search, price-check, and call APIs via MCP.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceProvides grocery price and nutritional information search capabilities, allowing AI agents to search for food products, compare prices, and analyze nutritional content across different grocery stores.1
- AlicenseAqualityCmaintenanceConnects AI agents to MercadoLibre, the largest e-commerce marketplace in Latin America. Search products, get item details, browse categories, track trends, and convert currencies.68732MIT
- FlicenseAqualityDmaintenanceEnables AI assistants to track global food prices, search products by barcode or name, and compare costs across 27 countries. It provides tools for real-time price scraping and data aggregation from major international supermarket chains.84
- AlicenseNot gradedqualityDmaintenanceProvides real-time Argentine dollar exchange rates to Claude, including blue, official, MEP, CCL, crypto, and other rates. Enables automatic currency conversions for budgets, price comparisons, and financial analysis in pesos and dollars.15MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bunkerapps/superprecio_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server