How to populate the tools in webui #63
kelsonbatista
started this conversation in
General
Replies: 2 comments
-
|
I think it would be https;//my_ip:9300/toolname |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Perhaps also not https |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I am about a week trying to see MCP working in webui without success. I followed the example just to see it in action, but it also didn't work. I am running it in docker, I see the endpoints (/docs) but when I place it in webui I see only the name, not the tools.
What I am doing wrong?
Dockerfile:
FROM python:3.11-slim
WORKDIR /app
RUN pip install mcpo uv
CMD ["uvx", "mcpo", "--host", "0.0.0.0", "--port", "8000", "--", "uvx", "mcp-server-time", "--local-timezone=America/New_York"]
Build & Run :
docker build -t mcp-proxy-server .
docker run -d -p 9300:8000 mcp-proxy-server
My Containers:
mcp-proxy-server "uvx mcpo --host 0.0…" 0.0.0.0:9300->8000/tcp, [::]:9300->8000/tcp interesting_borg
ghcr.io/open-webui/open-webui:main "bash start.sh" 0.0.0.0:9200->8080/tcp, [::]:9200->8080/tcp open-webui
Endpoint:
https://my_IP:9300/docs -> working
WebUI:
Created a tool in Settings > Admin Settings > External Tools > add
Type OpenAPI
URLs https://my_IP:9300
ID/Name test-tool
Connection successfull , but I can see only the name "test-tool" , not the tools.
Beta Was this translation helpful? Give feedback.
All reactions