get_docs_for_npm_package
Retrieve documentation for npm packages directly in your IDE by fetching README files from GitHub repositories or package tarballs. Access up-to-date API information and package details in real-time.
Instructions
Get the docs for an npm package
Input Schema
Name | Required | Description | Default |
---|---|---|---|
packageName | Yes | Name of the npm package |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"packageName": {
"description": "Name of the npm package",
"type": "string"
}
},
"required": [
"packageName"
],
"type": "object"
}