
Astrocal MCP
- 1 repo stars
- Updated June 25, 2026
- astrocal-dev/mcp-server
Astrocal is a MCP server that lets agents check availability, book meetings, and cancel or reschedule via the Astrocal scheduling API.
About
Astrocal MCP Server exposes AI-native scheduling to coding agents: check open slots, create bookings, and cancel or reschedule meetings without hand-rolling calendar OAuth flows in every project. developers adding demo booking, onboarding calls, or concierge scheduling to a SaaS or agent product register this stdio server during the build integrations phase. Configuration uses ASTROCAL_API_KEY from the Astrocal dashboard, with optional default event type ID and custom API base URL. It is a focused communication MCP—meeting lifecycle only—not a full CRM or email platform. Compare it to generic Google Calendar scripts: Astrocal centralizes event types and API semantics so agents issue consistent tool calls. Ideal when scheduling is a feature of what you ship, not just your personal calendar hygiene.
- Check availability, book, cancel, and reschedule meetings via MCP tools
- stdio npm package @astrocal/mcp-server with ASTROCAL_API_KEY
- Optional ASTROCAL_DEFAULT_EVENT_TYPE_ID for simpler agent calls
- Configurable ASTROCAL_API_URL (default https://api.astrocal.dev)
- AI-native scheduling positioning at astrocal.dev
Astrocal MCP by the numbers
- Data as of Aug 10, 2026 (Skillselion catalog sync)
claude mcp add --env ASTROCAL_API_KEY=YOUR_ASTROCAL_API_KEY --env ASTROCAL_API_URL=YOUR_ASTROCAL_API_URL --env ASTROCAL_DEFAULT_EVENT_TYPE_ID=YOUR_ASTROCAL_DEFAULT_EVENT_TYPE_ID mcp-server -- npx -y @astrocal/mcp-serverAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 1 |
|---|---|
| Package | @astrocal/mcp-server |
| Transport | STDIO |
| Auth | Required |
| Last updated | June 25, 2026 |
| Repository | astrocal-dev/mcp-server ↗ |
What it does
Let agents check calendar availability, book meetings, and cancel or reschedule through Astrocal’s scheduling API over MCP.
Who is it for?
Best when you're embedding booking or call scheduling into a product or internal agent workflow using Astrocal event types.
Skip if: Skip if you need full calendar sync across every employee mailbox without a scheduling product layer, or non-meeting communication (email-only stacks).
What you get
Your agent can manage meeting availability and lifecycle through Astrocal MCP with one API key and predictable tool semantics.
- Agent tools for availability, booking, cancel, and reschedule
- Environment-based MCP config with optional default event type
- Scheduling integration without custom calendar glue in-repo
By the numbers
- Four core flows described: availability, book, cancel, reschedule
- Package version 0.1.4 (@astrocal/mcp-server)
- Default API base: https://api.astrocal.dev
README.md
@astrocal/mcp-server
Give your AI agents the power to schedule meetings. The official Model Context Protocol server for Astrocal — the API-first scheduling platform built for developers and AI agents.
Works with Claude Desktop, Cursor, Windsurf, and any MCP-compatible client. Your AI assistant can check availability, book meetings, cancel, reschedule, and manage waitlists — all through natural conversation.
Get your API key | Documentation | API Reference
Why Astrocal for AI Agents?
- Purpose-built for AI — Not a Calendly bolt-on. Astrocal's scheduling API was designed from day one for programmatic and AI-agent access.
- 8 tools, zero config — Check availability, book, cancel, reschedule, list event types, manage waitlists. Everything an agent needs.
- Calendar sync built in — Connects to Google Calendar, Microsoft 365, and CalDAV. Your agent books against real availability.
- Payments included — Stripe Connect integration means your agent can book paid consultations, not just free meetings.
- Sandbox mode — Test with
ac_test_*keys. No emails sent, no calendar events created, no charges made.
Quick Start
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"astrocal": {
"command": "npx",
"args": ["-y", "@astrocal/mcp-server"],
"env": {
"ASTROCAL_API_KEY": "ac_live_xxxxxxxxxxxxx"
}
}
}
}
Restart Claude Desktop and the scheduling tools will be available immediately.
Other MCP Clients
Install globally:
npm install -g @astrocal/mcp-server
Run:
ASTROCAL_API_KEY=ac_live_xxx astrocal-mcp
Environment Variables
| Variable | Required | Description |
|---|---|---|
ASTROCAL_API_KEY |
Yes | Your Astrocal API key (get one free) |
ASTROCAL_API_URL |
No | API base URL (default: https://api.astrocal.dev) |
ASTROCAL_DEFAULT_EVENT_TYPE_ID |
No | Default event type ID — your agent won't need to specify it on every call |
Available Tools
check_availability
Check available time slots for booking.
event_type_id(string, optional) — Event type to check. Optional ifASTROCAL_DEFAULT_EVENT_TYPE_IDis set.start_date(string, required) — Start date in ISO 8601 format (e.g.,2026-03-15)end_date(string, required) — End date in ISO 8601 format (e.g.,2026-03-22)timezone(string, optional) — IANA timezone (e.g.,America/New_York). Defaults to UTC.
create_booking
Book a meeting at a specific time.
event_type_id(string, optional) — Event type to book. Optional if default is set.start_time(string, required) — ISO 8601 datetime (e.g.,2026-03-15T14:00:00Z)invitee_name(string, required) — Full name of the person bookinginvitee_email(string, required) — Email address for calendar invitationinvitee_timezone(string, optional) — IANA timezone. Defaults to UTC.notes(string, optional) — Meeting notes (max 1000 characters)
cancel_booking
Cancel an existing booking. The invitee receives a cancellation email automatically.
booking_id(string, required) — ID of the booking to cancelreason(string, optional) — Cancellation reason (max 500 characters)
reschedule_booking
Reschedule a booking to a new time. Check availability first.
booking_id(string, required) — ID of the booking to reschedulenew_start_time(string, required) — New time in ISO 8601 formatreason(string, optional) — Reason for rescheduling (max 500 characters)
list_bookings
List bookings with optional filters.
status(string, optional) — Filter:confirmed,cancelled, orpending_paymentlimit(number, optional) — Max results (default: 10, max: 100)event_type_id(string, optional) — Filter by event type
list_event_types
List available event types that can be booked. No input required.
join_waitlist
Join the waitlist when all slots are full.
event_type_id(string, required) — Event type to join the waitlist forname(string, required) — Full nameemail(string, required) — Email addresspreferred_times(string, optional) — Preferred time ranges or notes
check_waitlist
Check your position on a waitlist.
waitlist_entry_id(string, required) — Waitlist entry ID returned fromjoin_waitlist
Example Conversation
User: "What meetings can I book?"
Agent: calls
list_event_types— "You have two event types: a 30-minute consultation (free) and a 1-hour strategy session ($50)."User: "Check if next Tuesday at 2pm is free for a consultation"
Agent: calls
check_availability— "Tuesday at 2pm is available."User: "Book it for jane@example.com"
Agent: calls
create_booking— "Done! Meeting confirmed for Tuesday, March 17 at 2:00 PM UTC with Jane. A calendar invitation has been sent."User: "Actually, move it to 3pm"
Agent: calls
reschedule_booking— "Rescheduled to 3:00 PM. Jane has been notified."
Part of the Astrocal Platform
This MCP server is one of several ways to integrate with Astrocal:
- REST API — Full scheduling API with OpenAPI 3.1 spec
- React SDK (
@astrocal/react) — Typed hooks, provider, and booking widget for React apps - Embeddable Widget (
@astrocal/widget) — Drop-in booking UI for any website - Dashboard — Manage event types, bookings, team members, and billing
- Webhooks — Real-time notifications for booking events
Create a free account to get started.
Links
License
MIT
Recommended MCP Servers
How it compares
Scheduling-only MCP, not a unified auth/email SaaS bundle or code-intelligence server.
FAQ
Who is dev.astrocal/mcp-server for?
Developers and agent developers who want programmatic scheduling—availability, booking, cancel, reschedule—inside Claude Code, Cursor, or similar MCP clients.
When should I use dev.astrocal/mcp-server?
Use it while building integrations for demos, sales calls, or support booking when Astrocal MCP is your scheduling backend.
How do I add dev.astrocal/mcp-server to my agent?
Install @astrocal/mcp-server from npm for stdio transport, set ASTROCAL_API_KEY (and optional default event type ID), and add the server to your MCP client configuration.