search_inks_by_name
Find fountain pen inks by name with fuzzy matching. Input a search term to retrieve relevant ink results, with customizable maximum results for precise queries.
Instructions
Search for fountain pen inks by name using fuzzy matching
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_results | No | Maximum number of results to return (default: 20) | |
query | Yes | Search term for ink name |
Input Schema (JSON Schema)
{
"properties": {
"max_results": {
"default": 20,
"description": "Maximum number of results to return (default: 20)",
"type": "number"
},
"query": {
"description": "Search term for ink name",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}