create_calendar_event
Create Google Calendar events directly from Obsidian notes to schedule tasks and reminders with automatic linking between your calendar and notes.
Instructions
Create a Google Calendar event linked to an Obsidian note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
confirm | No | ||
date | Yes | ||
description | No | ||
duration_minutes | No | ||
note_path | Yes | ||
time | Yes | ||
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"confirm": {
"default": false,
"title": "Confirm",
"type": "boolean"
},
"date": {
"title": "Date",
"type": "string"
},
"description": {
"default": "",
"title": "Description",
"type": "string"
},
"duration_minutes": {
"default": 60,
"title": "Duration Minutes",
"type": "integer"
},
"note_path": {
"title": "Note Path",
"type": "string"
},
"time": {
"title": "Time",
"type": "string"
},
"title": {
"title": "Title",
"type": "string"
}
},
"required": [
"note_path",
"title",
"date",
"time"
],
"type": "object"
}