Powerful search and filtering capabilities exposed as first-class MCP tools. Let agents narrow datasets at the source for optimal performance.
Every API filter becomes a typed parameter that agents can use intelligently.
{
"tool": "products.search",
"arguments": {
"filters": {
"category": "electronics",
"price_range": [100, 500],
"rating_min": 4.0,
"in_stock": true,
"brand": ["Apple", "Samsung"]
}
}
}Multi-field sorting with clear precedence and direction control.
{
"tool": "orders.list",
"arguments": {
"sort": [
{"field": "created_at", "order": "desc"},
{"field": "total", "order": "desc"},
{"field": "customer_id", "order": "asc"}
]
}
}price_gt: 100 rating_gte: 4.0 created_before: "2025-08-25" quantity_lte: 10
status_in: ["active", "pending"] category_not_in: ["archived"] tags_contains: "featured" ids: [1, 2, 3]
name_like: "%phone%" email_regex: ".*@company.com" path_prefix: "/products/" case_sensitive: false
price_between: [50, 200]
date_range: {
from: "2025-01-01",
to: "2025-12-31"
}has_discount: true image_exists: true description_not_null: true metadata_empty: false
_or: [
{price_lt: 50},
{discount_gte: 20}
]
_not: {status: "deleted"}Always prefer server-side filtering over client-side. MCPify exposes native database capabilities directly to agents, ensuring optimal query execution plans and minimal data transfer.