getFileContents
Retrieve the contents of a specific file from your Obsidian vault stored in GitHub. Input the file path to access and analyze documentation or notes directly.
Instructions
Retrieve the contents of a specific note, document, or file from your Obsidian vault stored in GitHub (my-organization/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"
}