cd /news/ai-tools/give-your-local-ai-tool-calling-supe… Β· home β€Ί topics β€Ί ai-tools β€Ί article
[ARTICLE Β· art-27321] src=dev.to β†— pub= topic=ai-tools verified=true sentiment=↑ positive

Give Your Local AI Tool-Calling Superpowers with Open WebUI and MCP

Open WebUI now supports the Model Context Protocol (MCP), enabling local AI assistants to use external tools like web search, file access, and code execution. Developers can set up a Docker-based environment with Ollama and Open WebUI, configure MCP servers, and achieve tool-calling performance of 3-5 seconds on an RTX 4070 Super. All data remains on the user's machine.

read1 min publishedJun 14, 2026

Want a ChatGPT-like experience where your AI can search the web, read your files, query databases, and run code? Open WebUI + MCP makes it possible - all running locally on your hardware.

The Model Context Protocol (MCP) is an open standard that lets AI connect to external tools. Open WebUI supports MCP natively, turning your local Ollama setup into a tool-equipped AI assistant.

Create a docker-compose.yml

:

services:
  open-webui:
    image: ghcr.io/open-webui/open-webui:main
    environment:
      - OLLAMA_BASE_URL=http://ollama:11434
      - MCP_ENABLE=true
      - ENABLE_TOOLS=true
    volumes:
      - open-webui:/app/backend/data
    ports:
      - "3000:8080"

  ollama:
    image: ollama/ollama:latest
    volumes:
      - ollama:/root/.ollama
    ports:
      - "11434:11434"
    deploy:
      resources:
        reservations:
          devices:
            - driver: nvidia
              count: all
              capabilities: [gpu]

volumes:
  ollama:
  open-webui:
docker compose up -d

Pull a model with strong tool-calling:

docker exec ollama ollama pull qwen3:14b:q8_0

Open ** http://localhost:3000** and create your admin account.

Go to Admin Panel β†’ Settings β†’ External Tools in Open WebUI.

npx -y @anthropic/mcp-server-brave-search
npx -y @modelcontextprotocol/server-filesystem /allowed/path

Configure each tool in the Open WebUI admin panel to give your AI real-world capabilities.

Start a new chat and click the tools icon (wrench) next to the input box. Select which tools the AI can use, then ask:

The AI decides when to call tools and incorporates results into its responses.

With Qwen3 14B Q8 on an RTX 4070 Super: tool calls complete in 3-5 seconds. Web search results are returned in 2-3 seconds. All data stays on your machine.

Originally published on everylocalai.com

── more in #ai-tools 4 stories Β· sorted by recency
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain β€” perfect for shipping the agent you just read about.

$git push zahid main
β†’ Live at https://your-agent.zahid.host βœ“
Get free account β†’ Pricing
from €0/mo Β· no card required
LIVE [news/give-your-local-ai-t…] indexed:0 read:1min 2026-06-14 Β· β€”