U
Uv
Install and manage Python packages with uv.
·No reviews yet
Share:
About
Auto-generated
Uv is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Uv.
- What does the uv MCP enable?
- The uv MCP allows you to install and manage Python packages. It streamlines Python development workflows by providing a fast and efficient packaging tool, similar to pip and venv but with enhanced performance.
- How can I install the uv MCP in an MCP client?
- Installation in an MCP client typically involves searching for 'uv' in the client's marketplace or extension manager. Once located, you can install and then configure it by following the client's specific instructions for new MCPs.
- Does the uv MCP require authentication or API keys?
- No, the uv MCP does not require any API keys, OAuth tokens, or other credentials. It operates locally via standard I/O for package management.
- What are the core capabilities exposed by the uv MCP?
- The uv MCP primarily exposes functionalities for Python package installation, dependency resolution, and virtual environment management. It aims to be a drop-in replacement for common Python packaging tools.
- Is there a cost associated with using the uv MCP?
- The uv project is open-source and community-provided, meaning the MCP itself is free to use. Any costs would arise from the underlying infrastructure where you run your Python projects, not the MCP.
- What are the prerequisites for using the uv MCP effectively?
- To use the uv MCP, you need a Python installation on your system. Its primary function is to manage packages for Python projects, so a functioning Python environment is essential.
Install Uv
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"uv": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-uv"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"uv": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-uv"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"uv": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-uv"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.