search_quote
Search for quotes using a query string on the MCP server mcp-yeoman. Specify a search term and limit results to refine your search efficiently.
Instructions
Search for quotes using a query string.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_results | No | The maximum number of results | |
query | Yes | The search query |
Input Schema (JSON Schema)
{
"properties": {
"max_results": {
"default": 8,
"description": "The maximum number of results",
"title": "Max Results",
"type": "integer"
},
"query": {
"description": "The search query",
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "search_quoteArguments",
"type": "object"
}