get_inks_by_maker
Retrieve all fountain pen inks produced by a specific manufacturer, such as Sailor or Diamine, with the option to limit results using the max_results parameter. Ideal for enthusiasts seeking inks from a particular brand.
Instructions
List all inks from a specific manufacturer
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maker | Yes | Manufacturer name (e.g., "sailor", "diamine") | |
max_results | No | Maximum number of results to return (default: 50) |
Input Schema (JSON Schema)
{
"properties": {
"maker": {
"description": "Manufacturer name (e.g., \"sailor\", \"diamine\")",
"type": "string"
},
"max_results": {
"default": 50,
"description": "Maximum number of results to return (default: 50)",
"type": "number"
}
},
"required": [
"maker"
],
"type": "object"
}