MCP Catalogs
Home

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
Score3085
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsBrowser AutomationFile System
LanguageTypeScriptPython
Last commit14 mo ago2 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

  1. Clone the repository:
git clone https://github.com/bsmi021/mcp-npm_docs-server.git
cd mcp-npm_docs-server
  1. Install dependencies:
npm install
  1. Build the server:
npm run build
  1. Run the server:
node dist/server.js

Integration

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

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server
Comparison generated from public README + GitHub signals. Last updated automatically.