Google Workspace Pack
★Trustedv1.0.0MIT★Gold Verified95by AgentNode · published 1 month ago · toolpack
Access Gmail, Google Calendar, Drive, Sheets, and Docs.
Full Google Workspace integration. Send and read emails, manage calendar events, upload/download files from Drive, read/write spreadsheets, and edit documents.
Quick Start
agentnode install google-workspace-packRuns in a subprocess with filtered environment by default. Declared permissions are policy-checked, not sandboxed.
Usage
From packagefrom google_workspace_pack.tool import run
# Send an email via Gmail
email_result = run(
action="gmail_access",
operation="send",
to=["team@acmecorp.com"],
subject="Sprint 14 Planning — Thursday 2pm",
body_html="<p>Hi team,</p><p>Sprint planning is scheduled for <b>Thursday at 2:00 PM ET</b>. Please update your Jira tickets before the meeting.</p><p>Agenda: <a href='https://docs.google.com/doc/d/abc123'>link</a></p>"
)
print(f"Email sent: {email_result['message_id']}")
# Create a matching calendar event
cal_result = run(
action="gcal_access",
operation="create_event",
calendar_id="primary",
summary="Sprint 14 Planning",
start="2025-03-20T14:00:00-05:00",
end="2025-03-20T15:00:00-05:00",
attendees=["alice@acmecorp.com", "bob@acmecorp.com"],
reminders=[{"method": "popup", "minutes": 15}]
)
print(f"Event created: {cal_result['html_link']}")Environment Variables
GOOGLE_CREDENTIALS_JSONGoogle Cloud service account or OAuth2 credentials JSON (base64-encoded or file path)
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. publisher tests passed.
This package was executed and validated by AgentNode before listing. Install, import, and runtime checks passed.
Last verified 13d ago· Runner v2.0.0
Use this when you need to...
- ›Read and send Gmail messages with attachments from agent workflows
- ›Create Google Calendar events with attendees and reminders
- ›Upload files to Google Drive and share with specific users
- ›Read and update Google Sheets cells for data pipelines
- ›Search across Gmail, Drive, and Calendar for cross-service queries
README
Version History
Capabilities
Permissions
Declared by the publisher. Checked before execution by the policy gate.
Permissions are policy-checked before execution. Network and filesystem access are not sandboxed at runtime. 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 google-workspace-packEnvironment Variables
GOOGLE_CREDENTIALS_JSONrequiredFiles (3)
License
MITStats
Compatibility
Frameworks
Runtime
pythonPython Version
>=3.10Trust & Security
Publisher
AgentNode
@agentnode