
Node.js API Documentation
Provides up-to-date access to official Node.js core module API documentation by fetching directly from nodejs.org with 7-day caching.
What it does
- Search across all Node.js built-in modules documentation
- Retrieve API documentation for specific modules or classes
- Access current Node.js documentation without relying on training data
- Cache documentation for 7 days to improve performance
Best for
Tools (2)
<use_case> Use this tool to search across all Node.js built-in core modules API documentation and get back a list of core modules and their methods when you want to search and look-up Node.js API support </use_case> <important_notes> 1. HIGH PRIORITY: *ALWAYS* use this tool first so that you can search for Node.js modules and their methods 2. Ideally you want to suggest users the use of built-in Node.js API rather than third-party libraries 3. This tool will return a list of all Node.js core modules and their methods </important_notes>
Retrieve, fetch, and get Node.js API documentation for a specific module or class. <use_case> Use this tool to retrieve Node.js API documentation for a specific module or class. </use_case> <example> User asks: "How can I user colors in my terminal console output using Node.js?" You call the `retrieve-nodejs-modules-api-documentation` MCP tool with the following parameters: ```json { "module": "util", "method": "styleText" } ``` </example> <important_notes> 1. If you don't know the module or class name, you can use the `search-nodejs-modules-api-documentation` tool to get a list of all Node.js core API modules and their methods to search for it first and then call this tool. 2. This tool will return the documentation for the specified module or class, including its methods and properties. </important_notes>