fetchGithubReadme
Extract README content from any GitHub repository using the repository URL. Simplify access to project documentation without manual navigation.
Instructions
Fetch README content from a GitHub repository URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"url": {
"minLength": 1,
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}