MCP Catalogs
Home

mcp-npm_docs-server vs filesystem

Side-by-side comparison to help you pick between these two MCP servers.

mcp-npm_docs-server
by bsmi021
filesystem
by modelcontextprotocol
Stars★ 3★ 85,748
30d uses
Score3077
Official
Categories
Developer ToolsAI / LLM ToolsOther
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit14 mo agothis month

mcp-npm_docs-server · Summary

MCP server for fetching NPM package metadata and documentation with local SQLite caching.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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"
      }
    }
  }
}

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.