Back to Search
neo_dev_package_analyzer
v0.1.0Analyzes package metadata across npm, Cargo, and PyPI to evaluate dependency health and security.
$0.002 / call (Standard Tier)
Updated: Apr 25, 2026
Overview
A comprehensive dependency analysis tool that evaluates npm, Cargo, and PyPI packages. It surfaces maintenance health indicators, security signals, and known vulnerabilities to help you make informed decisions before adding new dependencies to your project.
Example Input
JSON payload sent to this tool:
{
"ecosystem": "npm",
"package_name": "react"
}Example Output
Formatted JSON response returned by this tool:
{
"package": "serde",
"latest_version": "1.0.219",
"last_updated": "2025-02-28T19:21:44.291938+00:00",
"recent_downloads": 47834826,
"recent_downloads_period": "90 days",
"repository": "https://github.com/serde-rs/serde",
"security_audit": {
"has_vulnerabilities": false,
"known_exploits_count": 0
}
}Setup Configuration
Add the following configuration to your MCP general settings or mcp_config.json:
{
"mcpServers": {
"neonia": {
"serverUrl": "https://mcp.neonia.io/mcp?tools=neo_dev_package_analyzer",
"headers": {
"Authorization": "Bearer API_KEY"
}
}
}
}