fetch-library-docs
Retrieve package documentation from multiple programming languages including JavaScript, Python, Java, and more, extracting READMEs, API docs, and code examples for analysis without requiring API keys.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| library | Yes | Name of the package or URL of the library documentation to fetch | |
| language | No | Programming language or repository type if providing a package name (e.g., javascript, python, java, dotnet) |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"description": "Programming language or repository type if providing a package name (e.g., javascript, python, java, dotnet)",
"type": "string"
},
"library": {
"description": "Name of the package or URL of the library documentation to fetch",
"type": "string"
}
},
"required": [
"library"
],
"type": "object"
}