mcp-server-nodejs-api-docs

mcp
Guvenlik Denetimi
Gecti
Health Gecti
  • License — License: Apache-2.0
  • Description — Repository has a description
  • Active repo — Last push 0 days ago
  • Community trust — 10 GitHub stars
Code Gecti
  • Code scan — Scanned 12 files during light audit, no dangerous patterns found
Permissions Gecti
  • Permissions — No dangerous permissions requested
Purpose
This MCP server fetches and provides Node.js API documentation directly to AI assistants like Claude Desktop or Cursor AI. It allows the AI to query Node.js docs without leaving the development environment.

Security Assessment
The automated code scan checked 12 files and found no dangerous patterns, hardcoded secrets, or requests for overly broad permissions. The tool runs as a standalone local process (either via `npx` or a Docker container). While querying documentation inherently requires network requests to fetch the external Node.js docs, it does not appear to access local sensitive files or execute arbitrary background shell commands beyond its standard execution. Overall risk is rated as Low.

Quality Assessment
The project demonstrates strong maintenance and professional quality. It was updated very recently (within 0 days), indicating active development. It uses the permissive Apache-2.0 license and has a clear description. Backed by 10 GitHub stars, it has a modest but growing level of community trust. The repository also features excellent software engineering practices, including CI/CD workflows, code coverage tracking, and an explicit responsible disclosure policy for security vulnerabilities.

Verdict
Safe to use.
SUMMARY

MCP Server for Node.js API documentation

README.md

mcp-server-nodejs-api-docs

An MCP Server for Node.js API documentation

npm version license downloads build codecov Responsible Disclosure Policy

Usage: Generic CLI

npx mcp-server-nodejs-api-docs

You can debug calls for the MCP Server by inspecting the file mcp-server-nodejs-docs.log in your system's temporary directory (e.g., /tmp on Unix-like systems or %TEMP% on Windows) which this MCP Server writes to.

Usage: as a Docker container

You can run this MCP Server as a Docker container by using the following command:

docker pull ghcr.io/lirantal/mcp-server-nodejs-api-docs:latest

You can also use the Docker image directly in your MCP Server configuration for various applications, see examples below.

Usage for Claude Desktop:

Edit your Claude Desktop MCP Servers configuration file (located on macOS here: ~/Library/Application Support/Claude/claude_desktop_config.json) and add the following:

on macOS or Linux:

{
  "mcpServers": {
    "nodejs-api-docs": {
      "command": "npx",
      "args": ["-y", "mcp-server-nodejs-api-docs"]
    }
  }
}

for Windows users:

{
  "mcpServers": {
    "nodejs-api-docs": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "mcp-server-nodejs-api-docs"]
    }
  }
}

or with the Docker image:

{
  "mcpServers": {
    "nodejs-api-docs": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "--init", "-e", "DOCKER_CONTAINER=true", "ghcr.io/lirantal/mcp-server-nodejs-api-docs:latest"]
    }
  }
}

Usage for Cursor AI:

Edit your Cursor AI MCP file (located at ~/.cursor/mcp.json) and add the following:

{
  "mcpServers": {
    "nodejs-api-docs": {
      "command": "npx",
      "args": ["-y", "mcp-server-nodejs-api-docs"]
    }
  }
}

Development

To build the project with Docker locally run:

docker build -t mcp-server-nodejs-api-docs .

Then run the container as follows for your MCP Server configuration:

docker run -i --rm --init -e DOCKER_CONTAINER=true mcp-server-nodejs-api-docs

Contributing

Please consult CONTRIBUTING for guidelines on contributing to this project.

Author

mcp-server-nodejs-api-docs © Liran Tal, Released under the Apache-2.0 License.

Yorumlar (0)

Sonuc bulunamadi