system
Access and manage system operations within Obsidian by performing actions like retrieving info, executing commands, or fetching web content and converting it to markdown.
Instructions
System operations - info, commands, fetch_web
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | The specific action to perform | |
url | No | URL to fetch and convert to markdown |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "The specific action to perform",
"enum": [
"info",
"commands",
"fetch_web"
],
"type": "string"
},
"url": {
"description": "URL to fetch and convert to markdown",
"type": "string"
}
},
"required": [
"action"
],
"type": "object"
}