configure
Set up research parameters such as max loops, LLM model, and search API to customize deep research tasks using the MCP server for AI-driven insights.
Instructions
Configure the research parameters (max loops, LLM model, search API)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
llmModel | No | Ollama model to use (e.g. llama3.2) | |
maxLoops | No | Maximum number of research loops (1-5) | |
searchApi | No | Search API to use for web research |
Input Schema (JSON Schema)
{
"properties": {
"llmModel": {
"description": "Ollama model to use (e.g. llama3.2)",
"type": "string"
},
"maxLoops": {
"description": "Maximum number of research loops (1-5)",
"type": "number"
},
"searchApi": {
"description": "Search API to use for web research",
"enum": [
"perplexity",
"tavily"
],
"type": "string"
}
},
"required": [],
"type": "object"
}