enable_doc
Enable crawling for a specific document on open-docs-mcp by specifying its name, ensuring it is indexed and accessible for search and retrieval.
Instructions
Enable crawling for a specific doc
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the doc to enable |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Name of the doc to enable",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}