create_calendar_event
Generate and schedule calendar events with title, start time, duration, and category. Optionally add description, location, and stamina cost for integrated tracking on MCP Calendar Server.
Instructions
새로운 캘린더 이벤트를 생성합니다.
Args:
title: 이벤트 제목
start_time: 시작 시간 (ISO 형식: 2025-08-02T10:00:00)
duration: 지속 시간(분)
category: 카테고리 (STUDY, WORK, REST, ACTIVITY)
description: 이벤트 설명 (선택)
location: 장소 (선택)
stamina_cost: 스태미나 소모량 (기본값: 0)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | ||
description | No | ||
duration | Yes | ||
location | No | ||
stamina_cost | No | ||
start_time | Yes | ||
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"title": "Category",
"type": "string"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"duration": {
"title": "Duration",
"type": "integer"
},
"location": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Location"
},
"stamina_cost": {
"default": 0,
"title": "Stamina Cost",
"type": "integer"
},
"start_time": {
"title": "Start Time",
"type": "string"
},
"title": {
"title": "Title",
"type": "string"
}
},
"required": [
"title",
"start_time",
"duration",
"category"
],
"title": "create_calendar_eventArguments",
"type": "object"
}