com.thenextgennexus/developer-tools-mcp-server
Official7 toolsSearch GitHub, npm, PyPI, StackOverflow, ArXiv from one MCP — built for coding agents.
Searches GitHub, npm, PyPI, StackOverflow, and ArXiv from a single interface for coding agents.
Captured live from the server via tools/list.
get_github_repo
Fetch detailed statistics and metadata for a GitHub repository. Returns star count, fork count, open issue count, primary programming language, project description, last updated timestamp, and contributor count. Use for evaluating open-source projects, competitive analysis, or monitoring project health.
Parameters (1)
- repostringrequired
Repository in format 'owner/repo' (e.g. 'facebook/react', 'kubernetes/kubernetes')
search_github
Search GitHub repositories by keyword to discover code, projects, and libraries. Returns matching repositories with star count, description, language, and URL. Use for finding libraries, examples, or competitive projects in specific domains.
Parameters (2)
- querystringrequired
Search keywords or project name (e.g. 'web framework', 'authentication library', 'data visualization')
- max_resultsinteger
Number of repository results to return (default 10, up to 100 for broad searches)
get_npm_package
Look up Node.js package information from NPM registry. Returns latest version, download statistics (weekly/monthly), dependency list, package description, license, and GitHub link. Use for evaluating JavaScript libraries, checking maintenance status, or reviewing package popularity.
Parameters (1)
- package_namestringrequired
NPM package name exactly as published (e.g. 'express', 'react', 'lodash', '@babel/core')
get_pypi_package
Retrieve Python package information from PyPI (Python Package Index). Returns current version, download counts, dependencies, release history, package homepage, and PyPI page URL. Use for Python library evaluation, dependency analysis, or checking package quality metrics.
Parameters (1)
- package_namestringrequired
PyPI package name as listed in registry (e.g. 'numpy', 'django', 'flask', 'pandas')
search_stackoverflow
Search Stack Overflow Q&A platform for programming questions, solutions, and code examples. Returns matching questions, answer count, view count, accepted answer snippet, tags, and link to full discussion. Use for troubleshooting, code examples, or finding solutions to common problems.
Parameters (2)
- querystringrequired
Programming problem or question (e.g. 'how to merge arrays in javascript', 'python asyncio example')
- max_resultsinteger
Number of Q&A results to retrieve (default 10, higher for comprehensive answers)
search_arxiv
Search arXiv for academic papers in computer science, machine learning, AI, physics, and mathematics. Returns paper titles, authors, abstracts, submission dates, and direct PDF download links. Use for researching algorithms, ML techniques, or emerging CS topics.
Parameters (2)
- querystringrequired
Research topic in CS/ML/physics (e.g. 'transformer architectures', 'distributed systems', 'quantum algorithms')
- max_resultsinteger
Papers to return (default 10, suitable for focused research)
search_google_scholar
Search Google Scholar for computer science research papers, citations, and academic publications. Returns paper title, authors, publication details, citation count, and link to paper. Use for finding research on CS topics, reviewing state-of-the-art, or citation tracking.
Parameters (2)
- querystringrequired
Computer science research topic (e.g. 'natural language processing', 'distributed consensus algorithms')
- max_resultsinteger
Maximum papers to return (default 10)
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"developer-tools-mcp-server": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://nexgendata-mcp-proxy.steve-corbeil.workers.dev/developer-tools-mcp-server/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.