Ollama Web Search
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| OLLAMA_API_KEY | Yes | Your Ollama API key, create one at https://ollama.com/settings/keys |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| web_searchA | Search the web via Ollama's hosted search API. Args: query: The search query. max_results: Maximum results to return (default 5, max 10). Returns: A dict with a "results" list, each item having title, url and content. |
| web_fetchA | Fetch the readable content of a web page via Ollama's hosted fetch API. Args: url: The absolute URL to fetch (must include http:// or https://). Returns: A dict with the page title, content, and a list of links. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 2 tools
The two tools have completely distinct purposes: web_search performs search queries, while web_fetch retrieves content from a specific URL. No overlap.
Both tools follow a consistent verb_noun pattern (web_fetch, web_search), using snake_case and the same prefix.
With only 2 tools, the set is minimal but appropriate for a simple web search and fetch utility. Could be expanded, but not overly sparse.
The tool surface covers the core operations: searching the web and fetching a page. No obvious gaps for the stated purpose.