You're viewing a demo portfolio

Join the waitlist
PRSM

mistral_create_agent

Active

Tool 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": {}
    }
  }
}

What this tool wraps· 1 endpoint

min confidence0.700.50

Parent server

io.usefulapi/mistral

https://github.com/m190/usefulapi-mcp

1/7 registries
View full server →
mistral_create_agent — io.usefulapi/mistral — PRSM MCP