annator / mcps /grok_com_huggingface /tools /hf_doc_fetch.json
techprotrade's picture
Add mcps directory
31c9f7d verified
Raw
History Blame Contribute Delete
705 Bytes
{
"name": "hf_doc_fetch",
"description": "Fetch a document from the Hugging Face or Gradio documentation library. For large documents, use offset to get subsequent chunks.",
"inputSchema": {
"type": "object",
"properties": {
"doc_url": {
"type": "string",
"maxLength": 200,
"description": "Documentation URL (Hugging Face or Gradio)"
},
"offset": {
"type": "number",
"minimum": 0,
"description": "Token offset for large documents (use the offset from truncation message)"
}
},
"required": [
"doc_url"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}
}