Google Calendar
Manage schedules and coordinate meetings effortlessly.
| Family | Category | Sub-type | Auth type | Trending score |
|---|---|---|---|---|
| Productivity | productivity | calendar | oauth2 | 93 |
Overview
| Product URL | API docs | Supported features |
|---|---|---|
| https://calendar.google.com/ | https://developers.google.com/workspace/calendar/api/guides/overview | tool_discovery, health_check, approval_gated_writes |
Setup
- Install the connector instance.
- Complete the OAuth authorization flow.
- Sync the tools and test the connection.
- Review approval-gated write tools before running them.
Auth & Configuration
This connector does not require additional instance config.
Available Tools
| Tool | Requires approval | Description |
|---|---|---|
list_events | No | List events on the primary calendar. |
get_event | No | Retrieve a single calendar event by its ID. |
create_event | No | Create a new event on the primary calendar. |
update_event | No | Update an existing calendar event (partial update). |
delete_event | Yes | Delete a calendar event by its ID. |
Use list_events for the main execution example below because it is safe to run without approval.
Examples
Install
bash
chainabit connectors install google-calendar --name "Google Calendar"bash
curl -X POST "$BASE_URL/connectors/instances" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{
"connectorKey": "google-calendar",
"displayName": "Google Calendar"
}'javascript
const response = await fetch(`${BASE_URL}/connectors/instances`, {
method: 'POST',
headers: {
Authorization: `Bearer ${TOKEN}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({
"connectorKey": "google-calendar",
"displayName": "Google Calendar"
}),
});Credentials
bash
chainabit connectors auth <instance-id>bash
curl -X POST "$BASE_URL/connectors/instances/<instance-id>/oauth/initiate" \
-H "Authorization: Bearer $TOKEN"javascript
const response = await fetch(`${BASE_URL}/connectors/instances/<instance-id>/oauth/initiate`, {
method: 'POST',
headers: {
Authorization: `Bearer ${TOKEN}`,
},
});Execute
bash
chainabit connectors exec <instance-id> list_events --input '{}'bash
curl -X POST "$BASE_URL/connectors/instances/<instance-id>/tools/tool_list_events/execute" \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{
"input": {}
}'javascript
const response = await fetch(
`${BASE_URL}/connectors/instances/<instance-id>/tools/tool_list_events/execute`,
{
method: 'POST',
headers: {
Authorization: `Bearer ${TOKEN}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({
"input": {}
}),
},
);Security Notes
- Keep tokens, API keys, and connection strings in the encrypted credentials vault.
- Do not allow arbitrary server URLs for remote MCP connectors.
- Mutating tools are approval-gated. Review the payload before executing them.
Troubleshooting
- If the health check fails, verify the token scope or credential payload and try again.
- If the tool list is empty, re-run sync-tools after storing the latest credentials.