search_companies
Find companies by applying SQL-like queries to filter results based on specific criteria, with customizable result sizes up to 100 matches.
Instructions
Search for companies matching specific criteria
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | SQL-like query to search for companies | |
size | No | Number of results to return (max 100) |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "SQL-like query to search for companies",
"type": "string"
},
"size": {
"description": "Number of results to return (max 100)",
"maximum": 100,
"minimum": 1,
"type": "number"
}
},
"required": [
"query"
],
"type": "object"
}