get_document_backlinks
Identify all documents linking to a specific document within the workspace. Use to uncover references, dependencies, and relationships between documents via the MCP Outline Server.
Instructions
Finds all documents that link to a specific document.
Use this tool when you need to:
- Discover references to a document across the workspace
- Identify dependencies between documents
- Find documents related to a specific document
- Understand document relationships and connections
Args:
document_id: The document ID to find backlinks for
Returns:
Formatted string listing all documents that link to the specified
document
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": "get_document_backlinksArguments",
"type": "object"
}