Calendar Manager Pack
★Trusted◇Sandbox optionalv1.0.0MIT✔Verified80by AgentNode · published 5 months ago · toolpack
Manage calendar events, scheduling, and availability across providers.
Create, update, and delete calendar events with support for Google Calendar, Outlook, and iCal. Check availability and schedule meetings.
Quick Start
agentnode install calendar-manager-packRuns in a subprocess with filtered environment by default. Declared permissions are policy-checked, not sandboxed.
Usage
From packagefrom calendar_manager_pack.tool import run
result = run(
capability="calendar_manage",
params={
"action": "create_event",
"provider": "google",
"event": {
"title": "Q1 Planning Review",
"start": "2026-04-01T10:00:00-04:00",
"end": "2026-04-01T11:30:00-04:00",
"attendees": ["alice@company.com", "bob@company.com"],
"location": "Conference Room B",
"description": "Review Q1 metrics and set Q2 OKRs.",
"reminders": [{"method": "popup", "minutes": 15}]
}
}
)
print(f"Event created: {result['event_id']}")
print(f"Calendar link: {result['html_link']}")Environment Variables
GOOGLE_CALENDAR_CREDENTIALSGoogle OAuth2 credentials JSON for Google Calendar access. Required when using the google provider.
OUTLOOK_CLIENT_IDMicrosoft application client ID for Outlook Calendar access. Required when using the outlook provider.
Runs locally on your machine. No execution data is sent to AgentNode. Permissions are checked before execution. Learn how this works
Verification
Package installs and imports correctly. runtime checks passed.
This package was executed and validated by AgentNode before listing. Install, import, and runtime checks passed.
Verified in cases_real mode
Last verified 28d ago· Runner v2.0.0
Use this when you need to...
- ›Create calendar events with attendees and reminders
- ›Check availability across multiple calendars
- ›List upcoming events for the next week
- ›Update or cancel existing meetings
- ›Find open time slots for scheduling
README
Version History
Capabilities
Input Schema
{
"type": "object",
"examples": [
{
"end": "2024-01-01T11:00:00",
"start": "2024-01-01T10:00:00",
"title": "Test",
"operation": "create_event"
}
],
"required": [
"operation"
],
"properties": {
"end": {
"type": "string",
"default": "2024-01-01T11:00:00"
},
"start": {
"type": "string",
"default": "2024-01-01T10:00:00"
},
"title": {
"type": "string",
"default": "Test Event"
},
"operation": {
"enum": [
"create_event",
"parse_ical",
"list_events",
"create_ical"
],
"type": "string"
},
"calendar_file": {
"type": "string",
"default": ""
}
}
}Permissions
Declared by the publisher. Checked before execution by the policy gate.
Permissions are policy-checked before execution. For trusted and curated packages that run on the host, network and filesystem access are policy-checked but not OS-sandboxed. When runtime isolation is required for untrusted/community code, AgentNode uses sandbox-or-fail-closed if the required container runtime and pinned image are available. Learn more
Privacy
All tool execution happens locally on your machine. AgentNode never receives:
- • Tool inputs or outputs
- • Execution logs
- • Data your agent processes
Only install events and search queries are sent to the registry.
agentnode install calendar-manager-packEnvironment Variables
GOOGLE_CALENDAR_CREDENTIALSOUTLOOK_CLIENT_IDFiles (3)
License
MITStats
Compatibility
Frameworks
Runtime
pythonPython Version
>=3.10Trust & Security
Publisher
AgentNode
@agentnode