{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "american-default-mcp/v1/search_indicators_input.json", "title": "search_indicators input", "type": "object", "additionalProperties": false, "required": ["query"], "properties": { "query": { "type": "string", "description": "Search string. Trimmed before scoring; empty after trim is rejected.", "minLength": 1, "maxLength": 200 }, "limit": { "type": "integer", "description": "Max results to return. Tool clamps to 50 internally; values above 1000 are rejected as abuse.", "minimum": 1, "maximum": 1000 } } }