read_document
Retrieve and display the full content of a specific document using the document ID. Use this tool to review, quote, reference, or analyze detailed document information within the MCP Outline Server.
Instructions
Retrieves and displays the full content of a document.
Use this tool when you need to:
- Access the complete content of a specific document
- Review document information in detail
- Quote or reference document content
- Analyze document contents
Args:
document_id: The document ID to retrieve
Returns:
Formatted string containing the document title and content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
document_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"document_id": {
"title": "Document Id",
"type": "string"
}
},
"required": [
"document_id"
],
"title": "read_documentArguments",
"type": "object"
}