ollama-mcp
Server Quality Checklist
Latest release: v0.1.0
- Disambiguation5/5
Each tool targets a distinct function: single generation, batch generation, model inventory, and model residency management. The batch and single dispatch tools could be confused, but the descriptions clearly differentiate them.
Naming Consistency3/5All names share an 'ollama_' prefix but the suffix mixes verbs (dispatch, dispatch_batch) with nouns (models, lifecycle), lacking a consistent verb_noun pattern. The naming is still readable and intuitive.
Tool Count5/5Four tools is an appropriate size for an Ollama integration, covering generation and model management without unnecessary bloat.
Completeness4/5The server covers single and batch generation plus model listing and lifecycle management, which are the core operations. Missing operations like model pull/delete are handled outside the MCP, so the surface is reasonably complete.
Average 4.6/5 across 4 of 4 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 10 commits in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI is passing
This repository is licensed under MIT License.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses meaningful behavioral context beyond annotations: pre-loading skips ~12s cold-load cost, unload frees VRAM immediately, and large models can consume tens of GB. Consistent with annotations (idempotentHint true, readOnlyHint false, destructiveHint false). Does not contradict annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
Three concise sentences, front-loaded with the overall purpose. Each sentence adds distinct value: action breakdown, warm use case, unload resource impact. No filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Covers the three action variants, their resource implications, and return behavior for status (VRAM use, time until unload). Lacks explicit return descriptions for warm/unload, but no output schema exists and the side effects are clearly explained. Sufficient for a management tool with good annotations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Input schema has 100% parameter coverage, so the schema already explains each parameter in detail. The description adds some context (e.g., warm/unload need `model`, keep_alive duration impact) but mostly relies on the schema. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
Description states the tool's core function ('Manage model residency') and details each action with specific verbs: `status` lists loaded models, `warm` pre-loads, `unload` frees VRAM. It clearly distinguishes itself from siblings like dispatch (inference) and models (management) by focusing on runtime residency in VRAM.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides concrete use cases: warm is 'useful before a batch', unload matters because a large model 'can hold tens of GB and starve everything else'. It implies using status to inspect residency, but does not explicitly name alternative tools or state when not to use this tool. Clear context, but lacks explicit exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior5/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond annotations, the description reveals non-obvious execution semantics: grouping by resolved model, sequential group execution to avoid VRAM thrashing, input-order result return, per-item failure isolation, and context cost savings. These traits are not encoded in the annotations (readOnlyHint, openWorldHint, etc.) and materially shape the agent's expectations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
Four concise sentences, each adding distinct value: the core purpose, grouping/VRAM rationale, result ordering/failure isolation, and the explicit comparison with the sibling. No redundant or filler content; every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having 10 parameters and nested objects, the description covers the most important behavioral context—batching rationale, ordering, failure handling, and context cost—while the schema documents parameter details in depth. It does not explicitly describe the result item structure, but the item schema's 'id echoed back' and 'results returned in input order' imply a list of per-item outputs, so the gap is minor.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with rich descriptions for all 10 parameters (e.g., model grouping, concurrency, keep_alive). The description's high-level statements about grouping and ordering are already replicated in the schema's parameter descriptions, so it adds no new parameter-level meaning; baseline 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
Description opens with 'Run many generations in one call', a specific verb+resource statement. It clearly distinguishes from sibling 'ollama_dispatch' by explicitly recommending batching over multiple separate calls, establishing its scope as the batch variant.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines5/5Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly instructs to 'Prefer this over many separate ollama_dispatch calls' when handling many prompts, naming the alternative and the concrete benefits (faster and less context). This gives clear when-to-use guidance and an implicit when-not-to-use for single dispatch, matching the level of the calibration example for get_calls.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior5/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description goes far beyond the basic annotations, disclosing that reasoning and answer tokens share one num_predict budget, thinking is off by default, files are read server-side and never enter the caller's context, resolution never silently substitutes unknown models, and output trimming is reported. This is substantial behavioral disclosure with no contradiction against annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is dense and front-loaded, with the first sentence stating purpose immediately. Every subsequent sentence adds unique information—use cases, context protection, model resolution, token budget, and output metrics—with no filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (26 params, no output schema) and sparse annotations, the description is remarkably complete: it covers purpose, when to use, model resolution, file handling, security constraints, token-budget caveats, and what the response includes. The schema handles individual parameter details, and the description fills the behavioral and selection gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 100% schema description coverage, the baseline is 3, but the description adds valuable context beyond the schema: the three model-selector grammars, the token-saving rationale behind files/file_globs, and the warning about num_predict sharing with thinking tokens. This elevates it above the baseline without being redundant.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The opening sentence is a specific verb+resource statement: 'Run one generation on a local Ollama model and return its output.' It clearly differentiates from siblings by emphasizing a single generation, and the rest of the description enumerates concrete use cases like summarization and extraction.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context for when to use it ('mechanical work you do not want to spend your own context on') and highlights the file-reading feature. However, it does not explicitly name alternatives or state when NOT to use it, such as pointing to ollama_dispatch_batch for multiple generations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior5/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint and idempotentHint annotations, the description reveals behavioral details: explain_selector 'without spending a generation', the reporting of the 'full fallback chain', and the need to refresh after pulling a model. This adds real context about system behavior and costs that annotations alone do not convey.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences, each serving a distinct purpose: the first states the core list function and output, the second covers filtering and refresh, and the third explains explain_selector with a usage recommendation. There is no redundant or filler content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness5/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the primary list function, filtering, refresh, and the advanced explain_selector feature, and also describes the output fields (capabilities, context window, size, loaded status). Since there is no output schema, this is sufficient. The tool's complexity is handled well because the schema documents all parameters and the description focuses on when and how to use them.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The main description adds operational meaning: it links `refresh` to post-pull actions, connects `resident_only` to avoiding load costs, and frames `explain_selector` as the recommended debugging entry point with the 'full fallback chain' detail. This is more than just restating the schema, though not dramatically so.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: 'List the models installed on the Ollama host' and enumerates the output fields (capabilities, context window, size, loaded status). It also clearly introduces the second function, explain_selector, as a dry-run of the model resolver, which distinguishes it from siblings like ollama_dispatch and ollama_lifecycle.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear conditional usage: 'pass `refresh` after pulling a new model', 'Filter with `capability` or `resident_only`', and for explain_selector, 'Start there whenever routing surprises you.' It gives context and a recommendation, but does not explicitly name alternative tools or state when not to use the tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Clickt-Digital-Marketing-Inc/ollama-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server