openwebui-tools MCP server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@openwebui-tools MCP serverSearch the web for the latest SpaceX launch news"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
openwebui-tools MCP server
A single MCP server that bundles four tools originally written for Open WebUI, so they can be used from any MCP-capable client (Claude Desktop, IDEs, custom agents, Open WebUI's MCP support, etc.).
Bundled tools:
Tool group | MCP tools exposed |
Agentic Web Search |
|
Stock Data |
|
Wolfram Alpha |
|
YouTube Transcript |
|
Built on FastMCP. The
default transport is streamable-http so the server is reachable over the
network at http://<host>:8000/mcp.
Configuration
Every Open WebUI "valve" became an environment variable. Copy the example file and edit it:
cp .env.example .envSee .env.example for the full list with defaults. Key things to set:
WOLFRAM_APP_ID— required for the Wolfram tool (free AppID).STOCK_FINNHUB_API_KEY— recommended for Stock Data (thesearch_symboltool requires it; everything else falls back to keyless yfinance).WEB_SEARCH_SEARXNG_URL— points at the bundled SearXNG service by default.
Variables are grouped by prefix: MCP_ (server), WEB_SEARCH_, STOCK_,
WOLFRAM_, YOUTUBE_.
Open WebUI per-user valves and UI-only behaviors that don't apply to MCP were dropped: status/progress events, citation events, the Wolfram HTML result "card" (it now returns plain text), and the stock tool's
verbose_status/include_raw_numbersper-user toggles.
Run with Docker Compose (recommended)
The compose file builds the server and also starts the supporting services the web search tool expects — SearXNG (search), FlareSolverr (Cloudflare fallback), and Apache Tika (PDF extraction):
cp .env.example .env # then edit it
docker compose up --buildThe MCP endpoint is then available at http://localhost:8000/mcp.
If you don't need web search, delete the searxng/flaresolverr/tika
services (and the depends_on block) from docker-compose.yml. The other
three tools have no local-service dependencies.
SearXNG note: JSON output must be enabled for
search_webto work — the bundled searxng/settings.yml does this. Set a realSEARXNG_SECRETin your.env.
Run with Docker (server only)
docker build -t openwebui-tools-mcp .
docker run --rm -p 8000:8000 --env-file .env openwebui-tools-mcpRun locally (no Docker)
python -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
cp .env.example .env # then edit it
python server.pySet MCP_TRANSPORT=stdio to run as a stdio MCP server instead (useful for
clients that spawn the process directly rather than connecting over HTTP).
Connecting a client
For an HTTP client, point it at http://<host>:8000/mcp (streamable-http). For
example, a Claude Desktop / generic client config using a stdio bridge or native
streamable-http support would reference that URL. For stdio mode, configure the
client to launch python server.py with the environment variables set.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/madelponte/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server