-
-
Notifications
You must be signed in to change notification settings - Fork 11.1k
feat: MCP server discovery UI #21079
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
3a48f24
feat: add curated MCP server registry for discovery UI
ishaan-jaff bcc1ad1
feat: add GET /v1/mcp/discover endpoint for MCP discovery
ishaan-jaff b765103
feat: add DiscoverableMCPServer types for MCP discovery
ishaan-jaff 2141a2b
feat: add fetchDiscoverableMCPServers network function
ishaan-jaff dbb35db
feat: add MCP discovery modal component
ishaan-jaff 9ee6187
feat: wire MCP discovery modal into server management page
ishaan-jaff 26006c1
feat: add prefill from discovery and back-to-registry link
ishaan-jaff 78c08b1
test: add unit tests for MCP discovery endpoint and registry
ishaan-jaff 8375866
fix: sync registry with official MCP API and fix stdio prefill
ishaan-jaff 5cf7334
Update ui/litellm-dashboard/src/components/mcp_tools/mcp_discovery.tsx
ishaan-jaff f32e900
Update litellm/proxy/management_endpoints/mcp_management_endpoints.py
ishaan-jaff a7d092f
fix: address Greptile review feedback
ishaan-jaff File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mcp_registry.jsonis at the repo root, butpyproject.tomlonly packages{ include = "litellm" }. When litellm is installed via pip, this file won't exist at the resolved path, and the endpoint will silently return an empty list. Consider moving the registry into thelitellm/package directory (e.g.litellm/proxy/mcp_registry.json) so it's included in pip distributions.