CONNECT APP
Build with Add to Calendar PRO
The fair Event Marketing and Sharing Tool
Marketing
- API key
MCP
Give your agent Add to Calendar PRO tools
Every Add to Calendar PRO action is exposed as an MCP tool on Pipedream's remote server. Point a client at it with your end user's ID and Connect resolves that user's Add to Calendar PRO account for each tool call — you store no tokens.
// accessToken: mint a short-lived token with the Connect SDK — see the MCP guide
const transport = new StreamableHTTPClientTransport(
new URL("https://remote.mcp.pipedream.net/v3"),
{
requestInit: {
headers: {
Authorization: `Bearer ${accessToken}`,
"x-pd-project-id": "{project_id}",
"x-pd-environment": "production",
"x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
"x-pd-app-slug": "add_to_calendar_pro",
},
},
},
)
const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)
const { tools } = await mcp.listTools()
// e.g. run Create Event:
const result = await mcp.callTool({
name: "add_to_calendar_pro-create-event",
arguments: {
groupProKey: "Group Pro Key",
newEventGroupName: "New Event Group Name",
},
})# access_token: mint a short-lived token with the Connect SDK — see the MCP guide
headers = {
"Authorization": f"Bearer {access_token}",
"x-pd-project-id": "{project_id}",
"x-pd-environment": "production",
"x-pd-external-user-id": "{external_user_id}", # any stable ID for this user in your system
"x-pd-app-slug": "add_to_calendar_pro",
}
async with streamablehttp_client("https://remote.mcp.pipedream.net/v3", headers=headers) as (read, write, _):
async with ClientSession(read, write) as session:
await session.initialize()
tools = await session.list_tools()
# e.g. run Create Event:
result = await session.call_tool("add_to_calendar_pro-create-event", {
"groupProKey": "Group Pro Key",
"newEventGroupName": "New Event Group Name",
})SDK
Run Add to Calendar PRO actions from your backend
Connect a user's Add to Calendar PRO account once, then run Create Event on their behalf from your own code — TypeScript, Python, or plain HTTP.
import { PipedreamClient } from "@pipedream/sdk"
const pd = new PipedreamClient({
projectId: process.env.PIPEDREAM_PROJECT_ID!,
clientId: process.env.PIPEDREAM_CLIENT_ID!,
clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
projectEnvironment: "production",
})
const result = await pd.actions.run({
id: "add_to_calendar_pro-create-event",
externalUserId: "{external_user_id}", // any stable ID for this user in your system
configuredProps: {
add_to_calendar_pro: { authProvisionId: "apn_xxxxxxx" },
groupProKey: "Group Pro Key",
newEventGroupName: "New Event Group Name",
},
})from pipedream import Pipedream
pd = Pipedream(
client_id="{oauth_client_id}",
client_secret="{oauth_client_secret}",
project_id="{project_id}",
project_environment="production",
)
result = pd.actions.run(
id="add_to_calendar_pro-create-event",
external_user_id="{external_user_id}", # any stable ID for this user in your system
configured_props={
"add_to_calendar_pro": {"authProvisionId": "apn_xxxxxxx"},
"groupProKey": "Group Pro Key",
"newEventGroupName": "New Event Group Name",
},
)curl -X POST https://api.pipedream.com/v1/connect/{project_id}/actions/run \
-H "Content-Type: application/json" \
-H "X-PD-Environment: production" \
-H "Authorization: Bearer {access_token}" \
-d '{
"external_user_id": "{external_user_id}",
"id": "add_to_calendar_pro-create-event",
"configured_props": {
"add_to_calendar_pro": { "authProvisionId": "apn_xxxxxxx" },
"groupProKey": "Group Pro Key",
"newEventGroupName": "New Event Group Name"
}
}'TOOLS
Add to Calendar PRO actions
On-demand operations your product or agent can configure and run on behalf of a connected user.
-
Create Event
actionCreate an event in a group. See the documentationWritev0.0.3 -
Create Event Group
actionCreate an event group. See the documentationWritev0.0.3 -
Create Landing Page Template
actionCreate a landing page template. See the documentationWritev0.0.3 -
Create RSVP Template
actionCreate an RSVP template. See the documentationWritev0.0.3 -
Delete Event
actionDelete an event. See the documentationWritev0.0.3 -
Delete Event Group
actionDelete an event group. See the documentationWritev0.0.3 -
Delete Landing Page Template
actionDelete a landing page template. See the documentationWritev0.0.3 -
Delete RSVP Template
actionDelete an RSVP template. See the documentationWritev0.0.3 -
Get Event
actionGet an event. See the documentationRead-onlyv0.0.3 -
Get Event Group
actionGet an event group. See the documentationRead-onlyv0.0.3 -
Get ICS Data
actionRetrieve the ics file for a provided event to be typically used as an attachment within an email. See the documentationRead-onlyv0.0.3 -
Get Landing Page Template
actionGet a landing page template. See the documentationRead-onlyv0.0.3 -
Get RSVP Template
actionGet an RSVP template. See the documentationRead-onlyv0.0.3 -
List CTA Template ID Options
actionRetrieves available options for the CTA Template ID field.Read-onlyv0.0.1 -
List Custom Domain ID Options
actionRetrieves available options for the Custom Domain ID field.Read-onlyv0.0.1 -
List Event Pro Key Options
actionRetrieves available options for the Event Pro Key field.Read-onlyv0.0.1 -
List Group Pro Key Options
actionRetrieves available options for the Group Pro Key field.Read-onlyv0.0.1 -
List Style ID Options
actionRetrieves available options for the Style ID field.Read-onlyv0.0.1 -
Update Event
actionUpdate an event in a group. See the documentationWritev0.0.3 -
Update Event Group
actionUpdate an event group. See the documentationWritev0.0.4 -
Update Landing Page Template
actionUpdate a landing page template. See the documentationWritev0.0.3 -
Update RSVP Template
actionUpdate an RSVP template. See the documentationWritev0.0.3
EVENTS
Add to Calendar PRO triggers
Event sources your backend can deploy for users and receive through a webhook.
-
Event Deleted (Instant)
triggerEmit new event when a new event is deleted in the systemInstantv0.0.2 -
Event Group Deleted (Instant)
triggerEmit new event when a new event group is deleted in the systemInstantv0.0.2 -
Event Group Updated (Instant)
triggerEmit new event when a new event group is updated in the systemInstantv0.0.2 -
Event Updated (Instant)
triggerEmit new event when a new event is updated in the systemInstantv0.0.2 -
New Event Created (Instant)
triggerEmit new event when a new event is created in the systemInstantv0.0.2 -
New Event Group Created (Instant)
triggerEmit new event when a new event group is created in the systemInstantv0.0.2 -
New RSVP Answer (Instant)
triggerEmit new RSVP answer when a new RSVP answer is created in the systemInstantv0.0.2 -
RSVP Answer Updated (Instant)
triggerEmit new RSVP answer when a new RSVP answer is updated in the systemInstantv0.0.2
REFERENCE
App details
Reference metadata for the Add to Calendar PRO connector in the Pipedream registry.
- App slug
- add_to_calendar_pro
- Authentication
- API key
- Categories
- Marketing
- Actions
- 22
- Triggers
- 8
- API proxy
- Not available