Back to Search
neonia_dev_package_analyzer
0.2.0Resolves package metadata and known-vulnerability status from authoritative sources.
$0.002 / call (Standard Tier)
Updated: Sep 21, 2026
Overview
Package metadata resolution with registry provenance and an explicit complete-or-unavailable OSV audit status.
Example Input
JSON payload sent to this tool:
{
"ecosystem": "cargo",
"package_name": "serde"
}Example Output
Formatted JSON response returned by this tool:
{
"ecosystem": "cargo",
"package": "serde",
"latest_version": "1.0.0",
"version_source": "crates.io max_stable_version",
"security_audit": {"status": "complete", "source": "OSV", "has_known_vulnerabilities": false, "known_vulnerability_count": 0, "vulnerability_ids": [], "warning": null}
}Setup Configuration
Add the following configuration to your MCP general settings or mcp_config.json:
{
"mcpServers": {
"neonia": {
"serverUrl": "https://mcp.neonia.io/mcp?tools=neonia_dev_package_analyzer",
"headers": {
"Authorization": "Bearer API_KEY"
}
}
}
}