getFileContents
Retrieve the contents of a specific file from an Obsidian vault stored in a private GitHub repository, enabling direct access to your knowledge base content through a provided file path.
Instructions
Retrieve the contents of a specific note, document, or file from your Obsidian vault stored in GitHub (johndoe-org/obsidian-vault). Perfect for accessing your knowledge base content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | Path to the file within the repository. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"filePath": {
"description": "Path to the file within the repository.",
"type": "string"
}
},
"required": [
"filePath"
],
"type": "object"
}