deepwiki_fetch
Fetch and convert Deepwiki documentation into Markdown for individual or multiple sites. Specify URL, depth, and output mode to retrieve structured content from repositories.
Instructions
Fetch a deepwiki.com repo and return Markdown
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxDepth | No | Can fetch a single site => maxDepth 0 or multiple/all sites => maxDepth 1 | |
mode | No | aggregate | |
url | Yes | should be a URL, owner/repo name (e.g. "vercel/ai"), a two-word "owner repo" form (e.g. "vercel ai"), or a single library keyword | |
verbose | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"maxDepth": {
"default": 1,
"description": "Can fetch a single site => maxDepth 0 or multiple/all sites => maxDepth 1",
"maximum": 1,
"minimum": 0,
"type": "integer"
},
"mode": {
"default": "aggregate",
"enum": [
"aggregate",
"pages"
],
"type": "string"
},
"url": {
"description": "should be a URL, owner/repo name (e.g. \"vercel/ai\"), a two-word \"owner repo\" form (e.g. \"vercel ai\"), or a single library keyword",
"type": "string"
},
"verbose": {
"default": false,
"type": "boolean"
}
},
"required": [
"url"
],
"type": "object"
}