MCP servers enabled but not seeing it in UI #7067
Replies: 4 comments 14 replies
-
Make sure you update, then you will see it in the chatarea. Otherwise, you can use it with Agents: Updating Instructions (docker): # Linux command to Remove all existing images
docker images -a | grep "librechat" | awk '{print $3}' | xargs docker rmi
# Windows Powershell
docker images -a | findstr "librechat" | ForEach-Object { docker rmi $_.Split()[2] } Then follow the directions here: https://www.librechat.ai/docs/local/docker#update-librechat |
Beta Was this translation helpful? Give feedback.
-
In your librechat.yaml file you need to also turn on the agents endpoints. Definition of custom endpointsendpoints: disableBuilder: false # Disable Assistants Builder Interface by setting to
|
Beta Was this translation helpful? Give feedback.
-
I am having the same problem.
my librechat.yaml # For more information, see the Configuration Guide:
# https://www.librechat.ai/docs/configuration/librechat_yaml
# Configuration version (required)
version: 1.2.1
# Cache settings: Set to true to enable caching
cache: true
# File strategy s3/firebase
# fileStrategy: "s3"
# Example MCP Servers Object Structure
mcpServers:
raw-oxial:
type: sse
url: http://172.17.0.1:8000/sse
timeout: 30000
# Definition of custom endpoints
endpoints:
assistants:
disableBuilder: false # Disable Assistants Builder Interface by setting to `true`
pollIntervalMs: 3000 # Polling interval for checking assistant updates
timeoutMs: 180000 # Timeout for assistant operations
# Should only be one or the other, either `supportedIds` or `excludedIds`
supportedIds: ["asst_supportedAssistantId1", "asst_supportedAssistantId2"]
# excludedIds: ["asst_excludedAssistantId"]
# Only show assistants that the user created or that were created externally (e.g. in Assistants playground).
# privateAssistants: false # Does not work with `supportedIds` or `excludedIds`
# (optional) Models that support retrieval, will default to latest known OpenAI models that support the feature
retrievalModels: ["gpt-4-turbo-preview"]
# (optional) Assistant Capabilities available to all users. Omit the ones you wish to exclude. Defaults to list below.
capabilities: ["code_interpreter", "retrieval", "actions", "tools", "image_vision"]
agents:
# (optional) Default recursion depth for agents, defaults to 25
recursionLimit: 50
# (optional) Max recursion depth for agents, defaults to 25
maxRecursionLimit: 100
# (optional) Disable the builder interface for agents
disableBuilder: false
# (optional) Agent Capabilities available to all users. Omit the ones you wish to exclude. Defaults to list below.
capabilities: ["execute_code", "file_search", "actions", "tools"]
custom:
- name: "ollama"
apiKey: ollama
# use 'host.docker.internal' instead of localhost if running LibreChat in a docker container
baseURL: "http://172.17.0.1:11434"
models:
default: [
"qwen3:32b",
"qwen3:30b",
"qwen2.5-coder:32b",
"qwq:latest",
"deepseek-r1:70b",
"deepseek-r1:32b",
"codestral:latest",
"mistral-small:latest",
"qwen:32b",
"deepseek-v2:16b",
"deepseek-coder:33b"
]
# fetching list of models is supported but the `name` field must start
# with `ollama` (case-insensitive), as it does in this example.
fetch: true I can see that the mcp server was initialized without errors:
Am I doing something wrong ? |
Beta Was this translation helpful? Give feedback.
-
Im getting a different issue where I'm getting a |
Beta Was this translation helpful? Give feedback.
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've set up mcpServers in librechat.yml, and the log shows it has initialized, but the
server
doesn't show up in the UI. Is there any additional configuration I need to modify to make the mcpServer appear in the UI?librechat.yml
logs:
Beta Was this translation helpful? Give feedback.
All reactions