Developer Tools MCP Server
Provides developer tools for searching PyPI packages, fetching GitHub repository info, searching Stack Overflow, and checking Python package compatibility using public APIs with no API keys required.
README
Developer Tools MCP Server
An MCP (Model Context Protocol) server that provides developer-focused tools for searching packages, repositories, and coding Q&A — all using public APIs with no API keys required.
Tools
1. search_pypi
Search PyPI for a Python package and get its name, description, latest version, and pip install command.
Parameters:
package_name(str): The name of the package to search for (e.g."requests")
Example response:
{
"name": "requests",
"description": "Python HTTP for Humans.",
"latest_version": "2.31.0",
"pip_install": "pip install requests"
}
2. get_github_repo
Fetch public info about a GitHub repository including stars, description, language, and last updated date.
Parameters:
owner(str): The repository owner (e.g."pallets")repo(str): The repository name (e.g."flask")
Example response:
{
"full_name": "pallets/flask",
"description": "The Python micro framework for building web applications.",
"stars": 65000,
"language": "Python",
"last_updated": "2024-01-15T10:30:00Z",
"open_issues": 5,
"forks": 15000,
"url": "https://github.com/pallets/flask"
}
3. search_stackoverflow
Search Stack Overflow for coding questions and return the top 3 results with titles, links, and scores.
Parameters:
query(str): The search query (e.g."python async await")
Example response:
{
"query": "python async await",
"result_count": 3,
"results": [
{
"title": "How to use async/await in Python?",
"link": "https://stackoverflow.com/questions/...",
"score": 150,
"answer_count": 5,
"is_answered": true
}
]
}
4. check_package_compatibility
Check if a Python package supports a specific Python version using PyPI classifier metadata.
Parameters:
package_name(str): The package name (e.g."requests")python_version(str): The Python version to check (e.g."3.12")
Example response:
{
"package": "requests",
"latest_version": "2.31.0",
"python_version_checked": "3.12",
"is_compatible": true,
"supported_python_versions": ["3", "3.8", "3.9", "3.10", "3.11", "3.12"],
"requires_python": ">=3.8",
"compatibility_source": "classifiers"
}
Setup
# Install dependencies
pip install -r requirements.txt
# Run the server directly
python mcp_server.py
# Run tests
pytest test_server.py -v
Connect to Claude Desktop
Add the following to your Claude Desktop configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"developer-tools": {
"command": "python",
"args": ["/absolute/path/to/mcp_server.py"]
}
}
}
Replace /absolute/path/to/mcp_server.py with the actual absolute path to the file.
After saving, restart Claude Desktop. The four tools will appear in the tools menu (hammer icon).
Connect to Claude Code
Add to your Claude Code settings (.claude/settings.json or project-level):
{
"mcpServers": {
"developer-tools": {
"command": "python",
"args": ["/absolute/path/to/mcp_server.py"]
}
}
}
Or use the CLI:
claude mcp add developer-tools python /absolute/path/to/mcp_server.py
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.