run
Execute AI models locally with a prompt, optionally using image inputs or adjusting temperature parameters, enabling controlled and private AI interactions via the MCP server.
Instructions
Run a model with a prompt. Optionally accepts an image file path for vision/multimodal models and a temperature parameter.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
images | No | ||
name | Yes | ||
prompt | Yes | ||
temperature | No | ||
think | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"images": {
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"type": "string"
},
"prompt": {
"type": "string"
},
"temperature": {
"maximum": 2,
"minimum": 0,
"type": "number"
},
"think": {
"type": "boolean"
}
},
"required": [
"name",
"prompt"
],
"type": "object"
}