mistral_create_agent
ActiveTool of io.usefulapi/mistral
declared in 1.0.1
Creates a Mistral Agent (additive configuration). Management API: POST /v1/agents. Requires model and name; instructions, tools, completion_args, description and handoffs are optional.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"model",
"name"
],
"properties": {
"name": {
"type": "string",
"description": "Human-readable agent name."
},
"model": {
"type": "string",
"description": "Model powering the agent, e.g. mistral-large-latest."
},
"tools": {
"type": "array",
"items": {
"type": "object",
"propertyNames": {
"type": "string"
},
"additionalProperties": {}
},
"description": "Tools available to the agent (passthrough objects, e.g. {type:'web_search'})."
},
"handoffs": {
"type": "array",
"items": {
"type": "string"
},
"description": "Agent ids this agent may hand off to."
},
"description": {
"type": "string",
"description": "Free-text description of the agent."
},
"instructions": {
"type": "string",
"description": "System instruction prompt the agent follows."
},
"completion_args": {
"type": "object",
"description": "Completion arguments (temperature, top_p, etc.) as a passthrough object.",
"propertyNames": {
"type": "string"
},
"additionalProperties": {}
}
}
}Parent server
io.usefulapi/mistral
https://github.com/m190/usefulapi-mcp
1/7 registries