Skip to main content
Glama

NPM Package Docs MCP

by meanands

NPM Package Docs MCP

A Model Context Protocol (MCP) tool that provides up-to-date documentation for npm packages directly in your IDE. This tool fetches the latest README documentation from either the package's GitHub repository or the README bundled with the npm package itself.

What it does

This MCP tool helps your IDE (like Cursor) get the most current documentation for any npm package instead of relying on outdated or incomplete information. It works by:

  1. GitHub Repository First: If the package has a GitHub repository, it fetches the README directly from the repository's main branch (trying master, main, or develop branches)
  2. NPM Package Fallback: If no GitHub repository is available, it downloads the package tarball and extracts the README file from the bundled package
  3. Real-time Updates: Always gets the latest documentation, ensuring you have the most current information

Why this matters

  • No more guesswork: Get accurate, up-to-date documentation instead of relying on potentially outdated IDE suggestions
  • Better development experience: Understand package APIs and usage patterns with current documentation
  • Reduced errors: Avoid issues caused by using outdated API references or deprecated methods
  • Seamless integration: Works directly in your IDE through the MCP protocol

Tools Provided

get_docs_for_npm_package

Description: Retrieves the latest documentation for any npm package

Parameters:

  • packageName (string): The name of the npm package (e.g., "react", "lodash", "express")

Returns: The README content as text, either from the GitHub repository or the package tarball

Example Usage:

// In your IDE, you can now ask for documentation like: // "Show me the docs for express" // "What's the latest API for react-router-dom?" // "Get documentation for axios"

How it Works

  1. Package Lookup: Queries the npm registry to get package metadata
  2. Repository Detection: Checks if the package has a GitHub repository URL
  3. GitHub Fetch: If available, fetches README.md from the repository's main branch
  4. Tarball Extraction: If no GitHub repo, downloads and extracts the package tarball to find the README
  5. Content Return: Returns the documentation content to your IDE

Installation

Prerequisites

  • Node.js (v16 or higher)
  • Cursor IDE (or any MCP-compatible IDE)

Installation

Add to Cursor

Add manually to Cursor

Edit your Cursor MCP configuration file (usually located at ~/.cursor/mcp.json):

{ "mcpServers": { "npm-package-docs-mcp": { "command": "npx", "args": [ "meanands/npm-package-docs-mcp" ] } } }
  1. Restart Cursor: Restart Cursor IDE to load the new MCP server

Usage

Once installed, you can use the tool in Cursor by:

  1. Opening the command palette (Cmd/Ctrl + Shift + P)
  2. Typing your request, for example:
    • "Get docs for express"
    • "Show me the latest react documentation"
    • "What's new in lodash v4?"

The tool will fetch and display the current documentation for the requested package.

Development

Running in Development Mode

npm run dev

Building for Production

npm run build

Project Structure

npm-docs-mcp/ ├── src/ │ ├── server.ts # Main MCP server implementation │ └── types/ │ └── index.ts # TypeScript type definitions ├── package.json ├── tsconfig.json └── README.md

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT License - see the LICENSE file for details.

Support

If you encounter any issues or have questions, please open an issue on the GitHub repository.

-
security - not tested
A
license - permissive license
-
quality - not tested

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Fetches up-to-date documentation for any npm package directly in your IDE by retrieving README files from GitHub repositories or package tarballs. Provides real-time access to current package documentation and API information.

  1. What it does
    1. Why this matters
      1. Tools Provided
        1. get_docs_for_npm_package
      2. How it Works
        1. Installation
          1. Prerequisites
          2. Installation
        2. Usage
          1. Development
            1. Running in Development Mode
            2. Building for Production
            3. Project Structure
          2. Contributing
            1. License
              1. Support

                Related MCP Servers

                • A
                  security
                  A
                  license
                  A
                  quality
                  Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
                  Last updated -
                  11
                  813
                  76
                  TypeScript
                  MIT License
                • A
                  security
                  A
                  license
                  A
                  quality
                  Facilitates searching and accessing programming resources across platforms like Stack Overflow, MDN, GitHub, npm, and PyPI, aiding LLMs in finding code examples and documentation.
                  Last updated -
                  6
                  38
                  JavaScript
                  AGPL 3.0
                  • Apple
                • A
                  security
                  A
                  license
                  A
                  quality
                  Fetches and extracts comprehensive package documentation from multiple programming language ecosystems (JavaScript, Python, Java, etc.) for LLMs like Claude without requiring API keys.
                  Last updated -
                  4
                  611
                  14
                  JavaScript
                  MIT License
                  • Apple
                  • Linux
                • -
                  security
                  A
                  license
                  -
                  quality
                  A server that provides structured access to markdown documentation from NPM packages, Go Modules, or PyPi packages, enabling informed code generation by exposing these docs as resources or tools.
                  Last updated -
                  1
                  TypeScript
                  MIT License

                View all related MCP servers

                MCP directory API

                We provide all the information about MCP servers via our MCP API.

                curl -X GET 'https://glama.ai/api/mcp/v1/servers/meanands/npm-package-docs-mcp'

                If you have feedback or need assistance with the MCP directory API, please join our Discord server