1. Conduid
  2. Browser
  3. SavvyCal MCP Server
MCP server · Browser

SavvyCal MCP Server

Connect Claude to your SavvyCal account. List upcoming meetings, check your availability, find open slots, book meetings, and manage your scheduling links — all in natural language without opening a browser.

Unclaimed browser
34Low

Scored 4 months ago · breakdown

About SavvyCal MCP Server

SavvyCal MCP Server is an MCP server in the Browser category: connect Claude to your SavvyCal account. List upcoming meetings, check your availability, find open slots, book meetings, and manage your scheduling links — all in natural language without opening a browser. It has been installed 0 times through Conduid.

Install

Clone
git clone https://github.com/arturkoter/savvycal-mcp-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about SavvyCal MCP Server

Powered by Claude · Grounded in docs

I know everything about SavvyCal MCP Server. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • ·Scoped permissionsNot checked yet.

README

SavvyCal MCP Server

An MCP (Model Context Protocol) server that connects Claude to your SavvyCal account. Ask Claude about your upcoming meetings, check your availability, book meetings, and manage your scheduling links — all in natural language.

What you can do

  • "What meetings do I have this week?" — list upcoming bookings with attendee details and join links
  • "When am I free for a 30-minute call next week?" — check available slots for any scheduling link
  • "Book a meeting with john@example.com on Tuesday at 2pm" — create a booking directly
  • "Cancel my 3pm meeting today" — cancel a scheduled event
  • "Turn off my intro-call link while I'm on holiday" — pause/resume scheduling links
  • "Show me all my booking types" — list all your scheduling links with status and duration

Tools

Tool Description
savvycal_list_events List upcoming (and past) meetings with date filters and pagination
savvycal_get_event Get full details for a specific event including join link
savvycal_cancel_event Cancel a scheduled meeting
savvycal_create_event Book a meeting on a scheduling link
savvycal_list_scheduling_links List all your scheduling links
savvycal_get_available_slots Get available time slots for a scheduling link
savvycal_toggle_link Enable or disable a scheduling link
savvycal_get_current_user Get your account info and timezone

Setup

1. Get your SavvyCal API key

  1. Log in to SavvyCal
  2. Go to Settings → Developer Settings
  3. Click Create a token and give it a name (e.g. "Claude MCP")
  4. Copy the token — you'll need it in the next step

2. Configure Claude Code (stdio, local use)

Add to your .mcp.json in your project root:

{
  "mcpServers": {
    "savvycal": {
      "command": "npx",
      "args": ["savvycal-mcp-server"],
      "env": {
        "SAVVYCAL_API_KEY": "pt_secret_your_token_here"
      }
    }
  }
}

Or run directly:

SAVVYCAL_API_KEY=pt_secret_your_token_here npx savvycal-mcp-server

3. Configure for HTTP (remote/hosted deployment)

SAVVYCAL_API_KEY=pt_secret_your_token_here TRANSPORT=http PORT=3000 node dist/index.js

The server exposes:

  • POST /mcp — MCP endpoint
  • GET /health — Health check

Development

# Clone and install
git clone https://github.com/your-username/savvycal-mcp-server
cd savvycal-mcp-server
npm install

# Set your API key
export SAVVYCAL_API_KEY=pt_secret_your_token_here

# Build
npm run build

# Run (stdio)
npm start

# Run (HTTP)
TRANSPORT=http npm start

Environment Variables

Variable Required Default Description
SAVVYCAL_API_KEY ✅ Yes Your SavvyCal personal access token
TRANSPORT No stdio Transport mode: stdio or http
PORT No 3000 Port for HTTP transport

Example conversations

Checking your schedule:

"What meetings do I have tomorrow?" "Show me all bookings this month" "Did anyone cancel a meeting recently?"

Checking availability:

"When am I free for a 30-minute intro call next week?" "What slots do I have open on my consultation link for Friday?"

Booking a meeting:

"Book a 30-minute intro call with Sarah (sarah@acme.com) for next Monday at 10am"

Managing links:

"Pause all my scheduling links — I'm going on holiday" "Re-enable my intro-call link" "How many active scheduling links do I have?"

License

MIT

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About SavvyCal MCP Server

How do I install SavvyCal MCP Server?

Run git clone https://github.com/arturkoter/savvycal-mcp-server, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is SavvyCal MCP Server safe to use with an AI agent?

Its trust score is 34 out of 100 (low). Conduid hasn't run static security checks on this repository yet, so review the source yourself before granting it credentials. It has no ConduID identity yet, so agent calls to it are not receipted.

Is SavvyCal MCP Server still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.