MCP server for ecosystem intelligence -- research packages, find alternatives, compare options, and check security advisories from within Claude Code.
| Tool | Description |
|---|---|
research_package |
Deep dive on a specific npm package (downloads, stars, security, maintenance, TS support, bundle size) |
compare_packages |
Compare multiple packages side-by-side |
find_alternatives |
Find alternatives to a given package |
check_security |
Check for security advisories |
analyze_package_json |
Analyze a project's dependencies |
get_trending |
Get trending packages in a category |
cd ~/Developer/tools/ecosystem-mcp
# Install dependencies
bun install
# Build
bun run build
# Run in development
bun run devAdd to your Claude Code MCP configuration (~/.claude/settings.json):
{
"mcpServers": {
"ecosystem-mcp": {
"command": "node",
"args": ["/Users/YOU/Developer/tools/ecosystem-mcp/dist/index.js"]
}
}
}Or run the inspector for testing:
bunx @anthropic-ai/mcp-inspector tsx src/index.ts- TypeScript (ESM)
@modelcontextprotocol/sdkv1.0zodfor schema validation- Node 20+
ecosystem-mcp/
src/
index.ts # Server entry, tool definitions
tools/ # Tool implementations
dist/ # Built output
package.json
tsconfig.json
MIT