mcp-npm_docs-server vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-npm_docs-server by bsmi021 | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 3 | ★ 149 |
| 30d uses | — | — |
| Score | 30 | 85 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | 14 mo ago | 2 mo ago |
mcp-npm_docs-server · Summary
MCP server for fetching NPM package metadata and documentation with local SQLite caching.
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
mcp-npm_docs-server · Use cases
- Documentation lookup for developers working with npm packages
- Metadata retrieval for package analysis tools
- Cached access to npm package information in offline environments
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
mcp-npm_docs-server · Install
Installation
- Clone the repository:
git clone https://github.com/bsmi021/mcp-npm_docs-server.git
cd mcp-npm_docs-server- Install dependencies:
npm install- Build the server:
npm run build- Run the server:
node dist/server.jsIntegration
Add to your MCP settings (e.g., Claude Desktop config.json):
{
"mcpServers": {
"npm-docs-server": {
"command": "node",
"args": ["/path/to/mcp-npm_docs-server/dist/server.js"],
"env": {
"NPM_CACHE_TTL": "86400",
"NPM_CACHE_DB_PATH": "./dist/npm-docs-cache.db",
"LOG_LEVEL": "info"
}
}
}
}ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_server