4,000+ servers built on vurb.ts
Vinkius

Open WebUI MCP Server for LlamaIndexGive LlamaIndex instant access to 12 tools to Add File To Collection, Chat Completed, Chat Completions, and more

MCP Inspector GDPR Free for Subscribers

LlamaIndex specializes in data-aware AI agents that connect LLMs to structured and unstructured sources. Add Open WebUI as an MCP tool provider through Vinkius and your agents can query, analyze, and act on live data alongside your existing indexes.

Ask AI about this MCP Server for LlamaIndex

The Open WebUI MCP Server for LlamaIndex is a standout in the Loved By Devs category — giving your AI agent 12 tools to work with, ready to go from day one.

Built for AI Agents by Vinkius

Vinkius delivers Streamable HTTP and SSE to any MCP client

ClaudeClaude
ChatGPTChatGPT
CursorCursor
GeminiGemini
WindsurfWindsurf
VS CodeVS Code
JetBrainsJetBrains
VercelVercel
+ other MCP clients
python
import asyncio
from llama_index.tools.mcp import BasicMCPClient, McpToolSpec
from llama_index.core.agent.workflow import FunctionAgent
from llama_index.llms.openai import OpenAI

async def main():
    # Your Vinkius token. get it at cloud.vinkius.com
    mcp_client = BasicMCPClient("https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp")
    mcp_tool_spec = McpToolSpec(client=mcp_client)
    tools = await mcp_tool_spec.to_tool_list_async()

    agent = FunctionAgent(
        tools=tools,
        llm=OpenAI(model="gpt-4o"),
        system_prompt=(
            "You are an assistant with access to Open WebUI. "
            "You have 12 tools available."
        ),
    )

    response = await agent.run(
        "What tools are available in Open WebUI?"
    )
    print(response)

asyncio.run(main())
Open WebUI
Fully ManagedVinkius Servers
60%Token savings
High SecurityEnterprise-grade
IAMAccess control
EU AI ActCompliant
DLPData protection
V8 IsolateSandboxed
Ed25519Audit chain
<40msKill switch
Stream every event to Splunk, Datadog, or your own webhook in real-time

* Every MCP server runs on Vinkius-managed infrastructure inside AWS - a purpose-built runtime with per-request V8 isolates, Ed25519 signed audit chains, and sub-40ms cold starts optimized for native MCP execution. See our infrastructure

About Open WebUI MCP Server

Connect your Open WebUI instance to any AI agent and take full control of your local and cloud LLM orchestration through natural conversation.

LlamaIndex agents combine Open WebUI tool responses with indexed documents for comprehensive, grounded answers. Connect 12 tools through Vinkius and query live data alongside vector stores and SQL databases in a single turn. ideal for hybrid search, data enrichment, and analytical workflows.

What you can do

  • Model Management — Use list_models to fetch all available models including Ollama, OpenAI, and Open WebUI Functions.
  • RAG & Knowledge Base — Upload files with upload_file, process web content via process_web_url, and organize them into collections using add_file_to_collection.
  • Chat Orchestration — Create and manage backend-controlled chats with create_new_chat or use OpenAI/Anthropic compatible endpoints like chat_completions and send_message.
  • Native Ollama Support — Directly interact with the Ollama API using ollama_generate, ollama_tags, and ollama_embed for local inference tasks.
  • File Processing — Monitor the status of your document ingestion with get_file_status to ensure your RAG context is ready.

The Open WebUI MCP Server exposes 12 tools through the Vinkius. Connect it to LlamaIndex in under two minutes — credentials fully managed, no infrastructure to provision, no vendor lock-in. Your configuration, your data, your control.

All 12 Open WebUI tools available for LlamaIndex

When LlamaIndex connects to Open WebUI through Vinkius, your AI agent gets direct access to every tool listed below — spanning llm-management, rag, model-inference, and more. Every call runs in a secure, isolated environment with full audit visibility. Beyond a simple connection, you get real-time monitoring of agent activity, enterprise governance, and optimized token usage.

add

Add file to collection on Open WebUI

Add a file to a knowledge collection

chat

Chat completed on Open WebUI

Run outlet filters for completed chat

chat

Chat completions on Open WebUI

OpenAI-compatible chat completion

create

Create new chat on Open WebUI

Must generate UUIDs for message IDs. Create a new chat (Backend-Controlled Flow)

get

Get file status on Open WebUI

Check file processing status

list

List models on Open WebUI

Retrieve all models

ollama

Ollama embed on Open WebUI

Ollama API Embeddings

ollama

Ollama generate on Open WebUI

Ollama API Generate Completion

ollama

Ollama tags on Open WebUI

List Ollama models

process

Process web url on Open WebUI

Process a web URL into a collection

send

Send message on Open WebUI

Anthropic-compatible message generation

upload

Upload file on Open WebUI

Content is extracted and stored in the vector DB. Provide file content as base64. Upload a file for RAG

Connect Open WebUI to LlamaIndex via MCP

Follow these steps to wire Open WebUI into LlamaIndex. The entire setup takes under two minutes — your credentials stay safe behind Vinkius.

01

Install dependencies

Run pip install llama-index-tools-mcp llama-index-llms-openai
02

Replace the token

Replace [YOUR_TOKEN_HERE] with your Vinkius token
03

Run the agent

Save to agent.py and run: python agent.py
04

Explore tools

The agent discovers 12 tools from Open WebUI

Why Use LlamaIndex with the Open WebUI MCP Server

LlamaIndex provides unique advantages when paired with Open WebUI through the Model Context Protocol.

01

Data-first architecture: LlamaIndex agents combine Open WebUI tool responses with indexed documents for comprehensive, grounded answers

02

Query pipeline framework lets you chain Open WebUI tool calls with transformations, filters, and re-rankers in a typed pipeline

03

Multi-source reasoning: agents can query Open WebUI, a vector store, and a SQL database in a single turn and synthesize results

04

Observability integrations show exactly what Open WebUI tools were called, what data was returned, and how it influenced the final answer

Open WebUI + LlamaIndex Use Cases

Practical scenarios where LlamaIndex combined with the Open WebUI MCP Server delivers measurable value.

01

Hybrid search: combine Open WebUI real-time data with embedded document indexes for answers that are both current and comprehensive

02

Data enrichment: query Open WebUI to augment indexed data with live information before generating user-facing responses

03

Knowledge base agents: build agents that maintain and update knowledge bases by periodically querying Open WebUI for fresh data

04

Analytical workflows: chain Open WebUI queries with LlamaIndex's data connectors to build multi-source analytical reports

Example Prompts for Open WebUI in LlamaIndex

Ready-to-use prompts you can give your LlamaIndex agent to start working with Open WebUI immediately.

01

"List all models available in my Open WebUI instance."

02

"Process the URL 'https://docs.openwebui.com/' into my 'Documentation' collection."

03

"Generate a response using the 'llama3' model for the prompt 'Explain quantum computing'."

Troubleshooting Open WebUI MCP Server with LlamaIndex

Common issues when connecting Open WebUI to LlamaIndex through Vinkius, and how to resolve them.

01

BasicMCPClient not found

Install: pip install llama-index-tools-mcp

Open WebUI + LlamaIndex FAQ

Common questions about integrating Open WebUI MCP Server with LlamaIndex.

01

How does LlamaIndex connect to MCP servers?

Use the MCP client adapter to create a connection. LlamaIndex discovers all tools and wraps them as query engine tools compatible with any LlamaIndex agent.
02

Can I combine MCP tools with vector stores?

Yes. LlamaIndex agents can query Open WebUI tools and vector store indexes in the same turn, combining real-time and embedded data for grounded responses.
03

Does LlamaIndex support async MCP calls?

Yes. LlamaIndex's async agent framework supports concurrent MCP tool calls for high-throughput data processing pipelines.

Explore More MCP Servers

View all →