ollama_health
Check if the Ollama daemon is reachable and view currently running models. Use this as the first step to confirm service health before using other tools.
Instructions
Check Ollama daemon connectivity and list currently running models. Use this tool as the first call to verify the Ollama service is reachable before calling any other tool in this server. Do not use this to list all installed models — use ollama_list_models instead. Behavior: Read-only, idempotent, safe to retry. No authentication required. No rate limits. Makes a single HTTP GET to the Ollama daemon. On connection failure returns an error object without throwing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| host | Yes | The Ollama host URL that was checked (e.g., 'http://localhost:11434'). | |
| error | No | Error message if connection failed. Only present on failure. | |
| connected | No | True if the Ollama daemon responded to the health check. | |
| running_models | No | Models currently loaded in GPU/CPU memory. Empty array if none are loaded. |