AI-native scheduling: check availability, book meetings, cancel and reschedule via MCP
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"dev-astrocal-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
AI-native scheduling: check availability, book meetings, cancel and reschedule via MCP
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
MCP Security Weekly
Get CVE alerts and security updates for dev.astrocal/mcp-server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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
ac_test_* keys. No emails sent, no calendar events created, no charges made.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.
Install globally:
npm install -g @astrocal/mcp-server
Run:
ASTROCAL_API_KEY=ac_live_xxx astrocal-mcp
| 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 |
check_availabilityCheck available time slots for booking.
event_type_id (string, optional) — Event type to check. Optional if ASTROCAL_DEFAULT_EVENT_TYPE_ID is 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_bookingBook 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_bookingCancel 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_bookingReschedule a booking to a new time. Check availability first.
booking_id (string, required) — ID of the booking to reschedulenew_start_time (string, required)