fetch-multilingual-docs
Fetch package documentation across multiple programming languages including JavaScript, Python, Java, Ruby, PHP, Rust, Go, and Swift. Extracts READMEs, API docs, and code examples for analysis without requiring API keys.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| packageName | Yes | Name of the package to fetch documentation for | |
| languages | Yes | List of programming languages or repository types to check (e.g., javascript, python, java) |
Input Schema (JSON Schema)
{
"properties": {
"languages": {
"description": "List of programming languages or repository types to check (e.g., javascript, python, java)",
"items": {
"type": "string"
},
"type": "array"
},
"packageName": {
"description": "Name of the package to fetch documentation for",
"type": "string"
}
},
"required": [
"packageName",
"languages"
],
"type": "object"
}