Update open-webui.mdx

This commit is contained in:
Timothy Jaeryang Baek 2025-04-12 11:36:49 -07:00
parent 723a38da50
commit 3950b19e4e

View File

@ -49,6 +49,35 @@ Next, connect your running tool server to Open WebUI:
![Settings Page](/images/openapi-servers/open-webui/settings.png)
### 👉 Optional: Using a Config File with mcpo
If you're running multiple tools through mcpo using a config file, take note:
🧩 Each tool is mounted under its own unique path!
For example, if youre using memory and time tools simultaneously through mcpo, theyll each be available at a distinct route:
- http://localhost:8000/time
- http://localhost:8000/memory
This means:
- When connecting a tool in Open WebUI, you must enter the full route to that specific tool — do NOT enter just the root URL (http://localhost:8000).
- Add each tool individually in Open WebUI Settings using their respective subpath URLs.
✅ Good:
http://localhost:8000/time
http://localhost:8000/memory
🚫 Not valid:
http://localhost:8000
This ensures Open WebUI recognizes and communicates with each tool server correctly.
---
## Step 3: Confirm Your Tool Server Is Connected ✅