initiate_deep_research
Perform advanced research by combining multiple search variations with optional email notifications using the Clado MCP Server. Optimized for detailed queries with customizable result limits.
Instructions
Initiate a deep research job that combines multiple search variations with optional email enrichment. Each result costs 1 credit.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
No | An email address to notify when the job is complete | ||
limit | No | Maximum number of results to return (default: 30, max: 100) | |
query | Yes | The search query to research |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"email": {
"description": "An email address to notify when the job is complete",
"type": "string"
},
"limit": {
"default": 30,
"description": "Maximum number of results to return (default: 30, max: 100)",
"maximum": 100,
"type": "number"
},
"query": {
"description": "The search query to research",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}