Novacal MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Novacal MCP ServerWhat events do I have next week?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
A remote MCP server for Novacal. It gives your AI client eight tools to read your event types, check availability, and book, reschedule, or cancel meetings.
It runs as a single Cloudflare Worker and speaks Streamable HTTP. You connect once with OAuth, paste your Novacal API key, and your client keeps working from there.
Connect
The hosted server is at https://mcp.novacal.io/mcp.
Claude Code
claude mcp add --transport http novacal https://mcp.novacal.io/mcpCursor, Windsurf, or any client with an MCP config file
{
"mcpServers": {
"novacal": {
"type": "http",
"url": "https://mcp.novacal.io/mcp"
}
}
}Claude Desktop and claude.ai
Add a custom connector and paste the same URL.
On first connect your client opens the sign-in page. Paste your Novacal API key and press Connect. That is the whole setup.
Related MCP server: Google-Calendar Universal MCP
Tools
Tool | What it does | Arguments |
| List event types on the account |
|
| Fetch one event type |
|
| Create an event type |
|
| Free slots for an event type in a date range |
|
| List events on the account | none |
| Book an event |
|
| Cancel a future event |
|
| Move a future event |
|
Read tools are marked read-only and idempotent. novacal_cancel_event is marked destructive, so clients that ask before destructive calls will ask.
Event type scope
novacal_get_event_types takes an optional scope:
{ "scope": "personal" }Use personal for your own event types and team for team event types. Leave it out to get both. The server tells the model to prefer personal unless you ask for a team event type.
Availability date ranges
start and end are plain YYYY-MM-DD dates. The range is start-inclusive and end-exclusive:
[start 00:00, end 00:00)For a single day, pass the next day as end:
{
"event_type_id": 123,
"start": "2026-05-29",
"end": "2026-05-30",
"timezone": "Europe/Amsterdam"
}That returns availability for May 29, 2026. Passing the same date for start and end is an empty range and returns nothing.
Timezones
timezone takes an IANA name such as Europe/Amsterdam, America/New_York, or Asia/Tokyo. It defaults to UTC when omitted.
On connect the server reads your Novacal profile timezone and puts it in the server instructions. So the model reads relative dates in your timezone and shows times in your timezone, unless you ask for another one.
How auth works
Your client starts an OAuth flow against the Worker.
The Worker serves
/authorizeand asks for your Novacal API key.It verifies the key with
GET /v1/users/me.It encrypts the key into the OAuth session props and completes the flow.
The key is only recoverable with your access token. It is never written to storage in readable form, never echoed back into the page, and is kept out of the grant metadata, which is stored unencrypted.
Removing the connection in your client does not revoke the key. To cut off access, rotate the key in Novacal.
Local development
You need Node 20+ and a Cloudflare account for deploys.
npm install
npm run devEndpoint | URL |
MCP |
|
Sign-in page |
|
Health check |
|
npm run dev uses the dev Wrangler environment. It simulates KV and D1 locally and points at a Novacal API on http://localhost:8010, so it never touches production resources.
To poke at the tools by hand:
npx @modelcontextprotocol/inspectorChecks
npm run check # tsc --noEmit
npm run lint # biome check
npm run format # biome check --write
npm test # vitest runCI runs check, lint, and test on every push and pull request.
Deploy
Create the Cloudflare resources once:
npx wrangler kv namespace create OAUTH_KV
npx wrangler d1 create novacal-mcp-server-dbCopy the returned IDs into wrangler.toml under OAUTH_KV and DB, then apply the schema:
npx wrangler d1 execute novacal-mcp-server-db --remote --file=./migrations/0001_user_credentials.sqlDeploy the production environment:
npm run deployNote: the
user_credentialstable is legacy. Credentials now live in the encrypted OAuth session and nothing reads or writes this table. It and theDBbinding stay only so existing deployments keep validating.
Configuration
Name | Type | Value |
| var |
|
| KV namespace | OAuth client, grant, and token storage |
| D1 database | legacy, unused |
How it is put together
src/
├── index.ts OAuthProvider wiring, /authorize, metadata routes
├── auth.ts API key verification and the sign-in page
├── mcp.ts tool registration and server instructions
├── api.ts Novacal HTTP client, UpstreamApiError, 30s timeout
├── responses.ts okResult / failedResult envelopes
├── types.ts Env, session props, Novacal types
└── handlers/
├── event-types.ts list, get, create
├── events.ts list, create, cancel, reschedule
└── availability.ts availability lookupHandlers are plain async functions with no MCP imports, so they are easy to test on their own. Every tool wraps its handler in a try/catch and returns an isError result instead of throwing. Failures reach the model as a short hint, not a raw JSON dump:
401 — Novacal API key is invalid or revoked. Re-authorize at /authorize.
429 — Rate limited by the Novacal API. Wait a moment before retrying.Calls to the Novacal API time out after 30 seconds.
Public routes
Route | Purpose |
| server name and status |
| health check |
| RFC 9728 metadata, with |
| sign-in page and form post |
| handled by OAuthProvider |
| the MCP endpoint, requires a bearer token |
Links
MCP registry entry —
io.github.ste7/novacal-mcp-server
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceEnables interaction with Calendly's scheduling platform via MCP, allowing users to manage events, invitees, and schedule meetings directly using the Calendly API.12489MIT
- AlicenseNot gradedqualityDmaintenanceEnables interaction with Google Calendar through a unified MCP API for managing events, calendars, and related tools.MIT
- FlicenseNot gradedqualityBmaintenanceEnables MCP clients to manage Google Calendar events, including CRUD operations, recurring events, free/busy queries, and push notifications via webhooks.
- FlicenseNot gradedqualityDmaintenanceExposes Cal.com scheduling tools to AI agents via MCP, enabling listing event types, checking availability, and managing bookings (create, cancel, reschedule).
Related MCP Connectors
Calendly MCP Pack — wraps the Calendly API v2 for scheduling data.
Calendar API for AI agents: events, availability, Google/Microsoft setup, scheduling, and iCal.
AI-native scheduling: check availability, book meetings, cancel and reschedule via MCP
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ste7/novacal-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server