fetch-url-docs
Extract library documentation from any URL across multiple programming languages, retrieving READMEs, API docs, and code examples for analysis without API keys.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | URL of the library documentation to fetch |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "URL of the library documentation to fetch",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}