pkg-intel-mcp
Provides tools for checking npm package health (downloads, last publish, deprecation, license), comparing alternatives, estimating bundle size via bundlephobia, detecting deprecations, and checking vulnerabilities via OSV.dev.
Provides tools for checking PyPI package health (downloads, last publish, yanked status, license), comparing alternatives, detecting yanked packages, and checking vulnerabilities via OSV.dev.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@pkg-intel-mcpIs 'request' deprecated?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
pkg-intel-mcp
Package intelligence for AI coding agents. An MCP server that answers: is this npm package safe to recommend?
AI coding agents constantly recommend outdated or deprecated packages — request, moment, tslint — because their training data is frozen in time. pkg-intel-mcp gives any MCP client (Claude Desktop, Claude Code, Cursor, Windsurf, ...) live tools to check package health before suggesting an install.
Tools
Tool | What it answers | Registries |
| Is this package alive? Downloads, last publish, deprecation, license, and a healthy / caution / avoid verdict. | npm, PyPI |
| Which of these 2–5 alternatives should I pick? Side-by-side with a recommendation. | npm, PyPI |
| What does this cost my frontend bundle? Minified + gzip via bundlephobia. | npm |
| Is this deprecated (npm) or yanked (PyPI), and what should I use instead? | npm, PyPI |
| Any known CVEs in this package/version, and which version fixes them? Via OSV.dev. | npm, PyPI |
All registry-aware tools take an optional registry parameter ("npm" default, or "pypi"). No API keys required — everything runs against public endpoints (npm registry, PyPI, pypistats, bundlephobia, OSV.dev) with a 15-minute in-memory cache.
Related MCP server: DepScope
Quick start
Claude Desktop
Add to claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"pkg-intel": {
"command": "npx",
"args": ["-y", "pkg-intel-mcp"]
}
}
}Restart Claude Desktop fully (quit from the menu bar), then ask: "Is request still okay to use? What should I use instead?"
Cursor
Same JSON shape in ~/.cursor/mcp.json — see examples/ for copy-paste configs, including local development setup.
Development
npm install
npm run dev # run with tsx
npm test # vitest, fully mocked, no network
npm run inspect # MCP Inspector against the built serverRules of the road: never console.log (stdout is the JSON-RPC channel — use console.error), keep module: Node16 in tsconfig, and verify tools in the Inspector before blaming a client config. See CLAUDE.md for full conventions.
Remote / team use (HTTP transport)
stdio is the default and right for personal use. For a shared server:
pkg-intel-mcp --http 3000
# MCP endpoint: POST http://host:3000/mcp
# Liveness: GET http://host:3000/healthzThe HTTP mode is fully stateless — no sessions, no sticky routing — so it scales behind any plain load balancer.
Roadmap
v1: core tools, stdio, npm publish
v1.1:
vulnerability_checkvia OSV.dev (also key-free)v2: PyPI support, stateless Streamable HTTP transport
v2.1: migrate to MCP SDK v2 / 2026-07-28 spec once stable
Later: Rust crates.io support, SBOM audit tool
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/JanMaa/pkg-intel-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server