set_provider
Configure the LLM provider and model for the MCTS MCP Server to optimize Monte Carlo Tree Search-based analysis and decision-making processes.
Instructions
Set the LLM provider and model
Input Schema
Name | Required | Description | Default |
---|---|---|---|
model | No | Model name (optional) | |
provider | No | Provider name | gemini |
Input Schema (JSON Schema)
{
"properties": {
"model": {
"description": "Model name (optional)",
"type": "string"
},
"provider": {
"default": "gemini",
"description": "Provider name",
"type": "string"
}
},
"type": "object"
}