Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
args | Yes | Paths to Obsidian vaults stored in iCloud Drive (multiple paths can be provided) |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
read_file | Your task is to read file from /Users/username/Library/Mobile Documents/iCloud |
read_multiple_files | Read the contents of multiple files simultaneously. This is more efficient than reading files one by one when you need to analyze or compare multiple files. Each file's content is returned with its path as a reference. Failed reads for individual files won't stop the entire operation. Only works within allowed directories. |
write_file | Your task is to write file to an appropriate path under /Users/username/Library/Mobile Documents/iCloud |
edit_file | Edit a specific file under /Users/username/Library/Mobile Documents/iCloud |
remove_file | - |
remove_multiple_files | - |
create_directory | Create a new directory or ensure a directory exists. Can create multiple nested directories in one operation. If the directory already exists, this operation will succeed silently. Perfect for setting up directory structures for projects or ensuring required paths exist. Only works within allowed directories. |
list_directory | Your task is to list directory under /Users/username/Library/Mobile Documents/iCloud |
remove_directory | - |
remove_multiple_directory | - |
move_file | Move or rename files and directories. Can move files between directories and rename them in a single operation. If the destination exists, the operation will fail. Works across different directories and can be used for simple renaming within the same directory. Both source and destination must be within allowed directories. |
full_text_search | Tokenize the user's query and the search engine tool will return relevant contents. summarized those contents based on the user's query. |