load_document
Load a document into DocNav-MCP for navigation and analysis, generating a unique document ID for easy access and management.
Instructions
Load a document for navigation and analysis.
Args:
file_path: Path to the document file
Returns:
Success message with auto-generated document ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"file_path": {
"title": "File Path",
"type": "string"
}
},
"required": [
"file_path"
],
"title": "load_documentArguments",
"type": "object"
}