Raw schema
{
"type": "object",
"properties": {
"query": {
"description": "Natural language search query describing the company, service, category, or buying intent.",
"maxLength": 2000,
"minLength": 1,
"title": "Query",
"type": "string"
},
"category": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional BizClaw business category filter. Use list_categories when unsure.",
"title": "Category"
},
"country": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional country filter, for example Turkey, United States, or Germany.",
"title": "Country"
},
"city": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional city filter, for example Istanbul, Izmir, Ankara, or Berlin.",
"title": "City"
},
"industry": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional specific industry or vertical filter.",
"title": "Industry"
},
"service_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional service delivery type: remote, local, nationwide, or hybrid.",
"title": "Service Type"
},
"is_verified": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional verification filter. True returns verified companies only; false returns unverified companies only.",
"title": "Is Verified"
},
"limit": {
"default": 10,
"description": "Maximum number of results to return. Use 1-20 for searches and 1-100 for proposal lists.",
"title": "Limit",
"type": "integer"
},
"offset": {
"default": 0,
"description": "Pagination offset. Increase with limit to fetch later pages.",
"title": "Offset",
"type": "integer"
},
"meta": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"description": "Optional UCP request metadata. Use {'ucp-agent': {'profile': 'https://agent.example/.well-known/ucp'}} for UCP-aware negotiation.",
"title": "Meta"
}
},
"required": [
"query"
],
"title": "search_companiesArguments"
}