Ollama Web Search
БесплатноНе проверенEnables web search and web fetch operations using Ollama's hosted APIs, allowing MCP clients to search the web and retrieve page content.
Описание
Enables web search and web fetch operations using Ollama's hosted APIs, allowing MCP clients to search the web and retrieve page content.
README
A stdio MCP server that exposes Ollama's hosted web search and web fetch APIs as tools any MCP client can call. Based on the Ollama web search docs.
Tools:
| Tool | Args | Returns |
|---|---|---|
web_search |
query (string), max_results (int, default 5, max 10) |
{ results: [{ title, url, content }] } |
web_fetch |
url (string) |
{ title, content, links: [...] } |
Prerequisites
- uv (provides
uvx, handles Python + dependencies) - An Ollama API key — create one at https://ollama.com/settings/keys (free account).
The published package runs with uvx ollama-web-search, which downloads and
runs it in an isolated environment; no clone or pip install step is needed.
Run it directly (smoke test)
export OLLAMA_API_KEY=your_api_key_here
uvx ollama-web-search
It will sit waiting for MCP messages on stdio. Wire it into a client instead of running it by hand.
To run from a local checkout instead: uv run ollama-web-search.
Client configuration
Set your key in the env block below.
Claude Desktop / Claude Code (mcpServers block):
{
"mcpServers": {
"Ollama Web Search": {
"command": "uvx",
"args": ["ollama-web-search"],
"env": { "OLLAMA_API_KEY": "your_api_key_here" }
}
}
}
For Claude Code you can also add it from the CLI:
claude mcp add ollama-web-search \
--env OLLAMA_API_KEY=your_api_key_here \
-- uvx ollama-web-search
Zed (~/.config/zed/settings.json, under context_servers):
{
"context_servers": {
"Ollama Web Search": {
"command": "uvx",
"args": ["ollama-web-search"],
"env": { "OLLAMA_API_KEY": "your_api_key_here" }
}
}
}
Cline:
{
"mcpServers": {
"Ollama Web Search": {
"type": "stdio",
"command": "uvx",
"args": ["ollama-web-search"],
"env": { "OLLAMA_API_KEY": "your_api_key_here" }
}
}
}
Codex (~/.codex/config.toml):
[mcp_servers.ollama_web_search]
command = "uvx"
args = ["ollama-web-search"]
env = { "OLLAMA_API_KEY" = "your_api_key_here" }
Установка Ollama Web Search
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/deXterbed/ollama-web-searchFAQ
Ollama Web Search MCP бесплатный?
Да, Ollama Web Search MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Ollama Web Search?
Нет, Ollama Web Search работает без API-ключей и переменных окружения.
Ollama Web Search — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Ollama Web Search в Claude Desktop, Claude Code или Cursor?
Открой Ollama Web Search на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare Ollama Web Search with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
