Skip to content
Early access · Full features

Calendar infrastructure for AI agents

Chronary is a calendar for AI agents: create calendars, manage events, query availability, and sync with human calendar apps, all through a simple REST API and MCP server.

Free Pro tier until our public launch. No credit card.

Built for the agent ecosystem

LangChain CrewAI AutoGen OpenAI Agents MCP

Works with any LLM framework. No SDK lock-in.

Features

Everything your agents need to manage time

A complete AI agent calendar and scheduling API — drive it over REST, the native SDKs, or the Chronary calendar MCP server. No human UI, no Google OAuth.

Pro

Scheduling Proposals

Negotiate meetings between multiple agents. Each agent responds with availability; the proposal resolves into events on every calendar.

POST /v1/scheduling/proposals
→ each agent responds → resolves into N events
Pro

Temporal Holds

Reserve a slot, then confirm or release within a window. Built for the 'agent A is checking 3 calendars before committing' pattern.

PUT /v1/events/:id/confirm
PUT /v1/events/:id/release
Pro

Cross-Agent Availability

Find when N agents are free at once. Intersection algorithm across any number of calendars.

GET /v1/availability
  ?agent_ids=agt_a,agt_b,agt_c

Calendar & Event API

Full CRUD with arbitrary JSON metadata. Each calendar gets an iCal feed URL. Subscribe to external Google, Apple, or Outlook calendars too.

POST /v1/calendars/:id/events
{ "title": "Standup", "start_time": "..." }

Webhook Events

18 event types covering agent, event, hold, proposal, and webhook lifecycle. HMAC-SHA256 signed.

x-chronary-signature: t=...,v1=...
{ "type": "event.created", "data": {...} }

First-Class Agents

Agents are entities, not service accounts. Per-agent IDs, audit trails, and rate limits. Pro: dedicated API key per agent so each customer integration uses its own credential. Leaked keys revoke a single tenant, not the whole org.

POST /v1/agents
→ agt_xxx (with audit trail + per-agent key)

MCP Server

23 tools for Claude, GPT, and any MCP-compatible agent. stdio + HTTP transports.

npx @chronary/mcp
→ 23 tools registered with the host

Framework Adapters

Drop Chronary tools into the framework you already use: Vercel AI SDK, OpenAI SDK, LangChain, or Mastra. One package, same tool surface across all of them.

import { ChronaryToolkit } from '@chronary/toolkit/ai-sdk'
generateText({ tools: toolkit.getTools(), ... })

Native SDKs

TypeScript, Python, and Go SDKs plus a CLI. Versioned packages with typed responses and full surface coverage.

npm i @chronary/sdk
pip install chronary
go get github.com/chronary/go-sdk

Simple integration

Create an event in 5 lines

Getting started

How it works

1 Key

Sign up & get your API key

No credit card. API keys generated instantly.

2 POST

Create a calendar and add events

One POST request. Full CRUD, metadata, timezone-aware.

3 iCal

See it on your phone

Every calendar gets an iCal feed URL. Subscribe in Google, Apple, or Outlook.

For agents

Or have your agent sign itself up

No console, no human in the loop. An agent provisions its own org, verifies an email OTP, and runs on the same Free tier as any developer signup.

1 POST

Agent posts to /v1/agent/sign-up

Email + agent name + accepted ToS version. Returns an API key on the sandbox tier; a 6-digit OTP is sent to the email.

2 TRY

Try it on the sandbox tier

Create up to 10 events, register 1 webhook, subscribe via iCal. Real responses, real fan-out, enough to evaluate the API end-to-end before verifying.

3 OTP

Verify to unlock the Free tier

POST the OTP to /v1/agent/verify with the same key. Caps jump 50-250x, 2,500 events/mo, 50K API calls, 5K webhook deliveries.

Sandbox tier, pre-verification

Real calls, small budget

Enough to wire the API end-to-end and watch a webhook fire, not enough to run production. Once you hit a cap, verify your email to unlock the Free tier.

Calendars
1
Events
10/mo
Webhook endpoints
1
Webhook deliveries
25/mo
iCal subscriptions
1
Availability queries
50/mo
API calls
1,000/mo

After OTP verification

Free tier, identical to developer signup

The same key gains full write access. Every cap below is the same number we enforce on a Free-tier developer signup, no discount, no penalty for self-signing-up.

Calendars
10
Events
2,500/mo
Webhook endpoints
3
Webhook deliveries
5,000/mo
iCal subscriptions
5
Availability queries
10,000/mo
API calls
50,000/mo

Full contract: docs.chronary.ai/api-reference/agent

For agents · zero context

Three one-liners to bootstrap an agent

Discovery primitives at the root domain let a cold AI coding agent find Chronary, install skills, point an MCP client at the hosted server, and provision its own API key, without human hand-holding.

1 · Install skills

IDE skill packs

Terminal window
# Install Chronary skill packs into your IDE
# targets: claude-code | cursor | windsurf | vscode | codex | all
curl -sSfL https://chronary.ai/skills.sh | bash

2 · Wire MCP

MCP client config

# Claude Desktop / Cursor / Windsurf, claude_desktop_config.json
{
"mcpServers": {
"chronary": {
"command": "npx",
"args": ["-y", "@chronary/mcp@latest"],
"env": { "CHRONARY_API_KEY": "chr_sk_..." }
}
}
}

3 · Bootstrap key

agent-init

Terminal window
# One-liner that signs up an agent, captures the OTP, verifies,
# and creates a smoke calendar, exits with $CHRONARY_API_KEY set.
npx @chronary/agent-init@latest
# Or shell fallback (no Node required):
curl -sSfL https://chronary.ai/agent-init.sh | sh

Pricing

Start free. Scale as you grow.

Free

$0 /month

For prototyping and small agents

  • 3 agents
  • 10 calendars
  • 50K API calls/mo
Join the Waitlist
Most Popular

Pro

$29 /month

For production agent workflows

  • 50 agents
  • 250 calendars
  • 1M API calls/mo
Join the Waitlist

Custom

Custom

For multi-agent platforms and enterprise

  • Custom volume limits
  • Custom rate limits and webhook retries
  • Custom audit log retention
Contact Sales

See full pricing →

Start building in 5 minutes

No credit card required. Free tier includes 3 agents, 10 calendars, and 50K API calls.

Get early access