P
PyPI
Search PyPI packages and inspect metadata.
·No reviews yet
Share:
About
Auto-generated
PyPI 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 PyPI.
- What is the PyPI MCP and what does it do?
- The PyPI MCP allows you to search for Python packages hosted on PyPI. It also enables inspection of package metadata, providing details such as version, dependencies, and author information. This is useful for quickly verifying package details within your development environment.
- How can I install the PyPI MCP for use with Cline?
- Installation typically involves cloning the repository from GitHub and following the setup instructions specific to the Cline client. Since this MCP uses the 'stdio' transport, a direct integration or command-line execution method is usually employed by the client.
- Does the PyPI MCP require API keys or other credentials?
- No, the PyPI MCP uses 'none' as its authentication type. This means you do not need to configure any API keys, OAuth tokens, or other credentials to use its features. It accesses public PyPI data directly.
- What are the key capabilities offered by the PyPI MCP?
- The primary capabilities include searching for Python packages by name and retrieving their associated metadata. This allows developers to quickly look up package information without leaving their current development tool or terminal interface.
- Is there a cost associated with using the PyPI MCP?
- The PyPI MCP itself is open-source and provided by the community, so there is no direct cost for its use. However, standard data usage fees from your internet service provider may apply when accessing PyPI data.
Install PyPI
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"pypi": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-pypi"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"pypi": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-pypi"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"pypi": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-pypi"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.