Skip to main content

Model Context Protocol server for Syncline - AI-powered meeting scheduling

Project description

Syncline MCP Server (Python)

Official Model Context Protocol (MCP) server for Syncline - AI-powered meeting scheduling. Pure Python implementation with async support.

📦 Other Implementations: TypeScript (Node.js)Go (High Performance)

All implementations are functionally identical and maintained in sync. Choose the one that fits your environment best.

What is MCP?

The Model Context Protocol (MCP) is an open protocol by Anthropic that enables AI models like Claude to securely interact with external tools and data sources. With Syncline's MCP server, Claude can autonomously schedule meetings, check availability, and manage calendars through natural conversation.

Features

  • AI Auto-Scheduling: Let Claude pick the optimal meeting time using Syncline's learning AI
  • Availability Checking: Find all available slots across attendees
  • Calendar Status: Verify user calendar connections
  • Manual Scheduling: Book meetings at specific times
  • Context-Aware: Support for 13 meeting contexts (investor_call, team_standup, etc.)
  • Smart Learning: Every booking improves Syncline's AI accuracy
  • Async/Await: Modern Python async architecture for optimal performance
  • Type-Safe: Full type hints for better IDE support

Installation

Prerequisites

  • Python 3.10 or higher
  • A Syncline account with API key (Get one here)
  • Claude Desktop app

1. Install the MCP Server

pip install syncline-mcp-server

Or with pipx for isolated installation:

pipx install syncline-mcp-server

2. Configure Claude Desktop

Add the Syncline MCP server to your Claude Desktop configuration:

macOS/Linux: ~/Library/Application Support/Claude/claude_desktop_config.json

Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "syncline": {
      "command": "syncline-mcp-server",
      "env": {
        "SYNCLINE_API_KEY": "your_api_key_here"
      }
    }
  }
}

Alternatively, if using uvx (recommended for Python MCP servers):

{
  "mcpServers": {
    "syncline": {
      "command": "uvx",
      "args": ["syncline-mcp-server"],
      "env": {
        "SYNCLINE_API_KEY": "your_api_key_here"
      }
    }
  }
}

3. Restart Claude Desktop

Restart Claude Desktop to load the MCP server. You should see "Syncline" appear in the MCP tools list.

Usage

Once configured, Claude can use Syncline tools through natural conversation:

Example 1: AI Auto-Scheduling

You: Schedule a 30-minute investor call with alice@example.com and bob@example.com
     sometime next week. Let the AI pick the best time.

Claude: I'll use Syncline's AI to find the optimal time for your investor call.
        [Uses schedule_auto tool]

        Perfect! I've scheduled your investor call for Tuesday, January 16th at 2:00 PM PST.

        Why this time was chosen:
        - Both attendees have high energy levels in early afternoon
        - No meetings immediately before/after (buffer time)
        - Fair timezone for all participants
        - Aligns with typical investor call patterns

        Calendar invites have been sent to all attendees.

Example 2: Check Availability First

You: What times are available for a 1-hour meeting with alice@example.com
     next Monday?

Claude: Let me check availability for next Monday.
        [Uses find_availability tool]

        Here are the available slots for a 1-hour meeting on Monday, January 15th:

        - 9:00 AM - 10:00 AM
        - 11:30 AM - 12:30 PM
        - 2:00 PM - 3:00 PM
        - 4:00 PM - 5:00 PM

        Which time works best for you?

You: Book the 2 PM slot

Claude: Done! I've scheduled the meeting for Monday, January 15th at 2:00 PM.
        [Uses schedule_meeting tool]

Example 3: Verify Calendar Connections

You: Can you check if alice@example.com has connected their calendar?

Claude: [Uses get_user_calendar_status tool]

        Yes, Alice has connected their Google Calendar.
        Last synced: 2 minutes ago
        Status: Active

Available Tools

1. schedule_auto (Recommended)

AI-powered scheduling that picks the optimal time automatically.

When to use: When you want the best possible time without manual selection.

Parameters:

  • attendees: Array of email addresses
  • duration_minutes: Meeting length (e.g., 30, 60)
  • title: Meeting title
  • context: Meeting type (warm_intro, investor_call, team_standup, etc.)
  • description: Optional agenda
  • natural_language_context: NEW - Natural language description for Claude AI to determine meeting organizer (e.g., "Alice pitching to investor Bob")
  • force_organizer: NEW - Override organizer detection by specifying an attendee email
  • earliest_date: Optional start of search window
  • latest_date: Optional end of search window
  • location: Optional location (Zoom, Office, etc.)

NEW: Intelligent Organizer Detection 🤖

The natural_language_context parameter enables Claude AI to intelligently determine who should create the calendar event based on social dynamics:

  • "Alice pitching to investor" → Alice organizes (requesting time)
  • "Get on Maria's calendar for office hours" → Maria organizes (hosting)
  • "Interview candidate" → Company organizes (hiring)

Falls back to first attendee if not provided or Claude unavailable.

2. find_availability

Find all available time slots.

When to use: When you want to see options or give the user choice.

Parameters:

  • attendees: Array of email addresses
  • duration_minutes: Meeting length
  • earliest_date: Start of search window
  • latest_date: End of search window

3. schedule_meeting

Schedule a meeting at a specific time.

When to use: When you already know the desired time.

Parameters:

  • attendees: Array of email addresses
  • start_time: ISO 8601 timestamp
  • duration_minutes: Meeting length
  • title: Meeting title
  • description: Optional agenda
  • location: Optional location

4. get_user_calendar_status

Check if a user has connected their calendar.

When to use: Before attempting to schedule with new attendees.

Parameters:

  • email: User's email address

Meeting Contexts

Syncline's AI uses context to understand meeting priority and energy requirements:

  • warm_intro - Introduction to someone you know
  • cold_outreach - First contact with new person
  • investor_call - Meeting with investors
  • client_demo - Product demonstration
  • team_standup - Daily team sync
  • one_on_one - 1:1 meeting
  • interview - Job interview
  • sales_call - Sales conversation
  • strategy_session - Strategic planning
  • brainstorm - Creative ideation
  • review - Performance or project review
  • casual_chat - Informal catch-up
  • urgent - Time-sensitive meeting

Environment Variables

  • SYNCLINE_API_KEY (required): Your Syncline API key
  • SYNCLINE_API_URL (optional): Custom API endpoint (defaults to production)

REST API vs MCP

Use MCP when:

  • Building AI assistants or agents
  • Want conversational scheduling interface
  • Need autonomous decision-making
  • Integrating with Claude or other AI models

Use REST API when:

  • Building traditional web/mobile apps
  • Need direct control over API calls
  • Implementing custom UI workflows
  • Prefer explicit programming

Both approaches use the same underlying Syncline infrastructure and share the same learning system.

Troubleshooting

"SYNCLINE_API_KEY environment variable is required"

Make sure you've added your API key to the Claude Desktop config file:

"env": {
  "SYNCLINE_API_KEY": "sk_live_..."
}

MCP Server Not Appearing in Claude Desktop

  1. Check that the config file path is correct
  2. Verify JSON syntax is valid (use a JSON validator)
  3. Restart Claude Desktop completely
  4. Check Claude's MCP logs for errors

"User calendar not connected" errors

Users must connect their calendar before scheduling:

  1. Send them to: https://syncline.run/developer
  2. They'll authenticate with Google/Microsoft
  3. Use get_user_calendar_status to verify connection

Why Python?

The Python implementation offers:

  • Modern Async: Built on asyncio for efficient I/O operations
  • Type Safety: Full type hints for better development experience
  • Pythonic: Idiomatic Python code that feels natural
  • Easy Integration: Works seamlessly with Python AI/ML workflows

Support

License

MIT

About Syncline

Syncline is AI-powered meeting scheduling that learns from every booking to get smarter over time. Instead of dumb slot-picking, Syncline considers 100+ factors including user preferences, energy patterns, timezone fairness, and meeting context to find the truly optimal time.

Built by developers, for developers. Schedule smarter, not harder.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

syncline_mcp_server-1.0.32.tar.gz (10.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

syncline_mcp_server-1.0.32-py3-none-any.whl (8.5 kB view details)

Uploaded Python 3

File details

Details for the file syncline_mcp_server-1.0.32.tar.gz.

File metadata

  • Download URL: syncline_mcp_server-1.0.32.tar.gz
  • Upload date:
  • Size: 10.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for syncline_mcp_server-1.0.32.tar.gz
Algorithm Hash digest
SHA256 739c18dd141123250fab38cc00aa6d5d86f1f2b5f0cef413353e09ad88a37234
MD5 582687abcbe1cad0d7af42d775650652
BLAKE2b-256 4316b79f396e1cc8e2b1d3c60fb7644ae4eeb103d949bf3f5c4f630ae8d58feb

See more details on using hashes here.

File details

Details for the file syncline_mcp_server-1.0.32-py3-none-any.whl.

File metadata

File hashes

Hashes for syncline_mcp_server-1.0.32-py3-none-any.whl
Algorithm Hash digest
SHA256 4bf1f728cf848244537806e14ff12bc4c503e4768d7e58bffdfb0446fb6e4e83
MD5 f4a9404c9116552197399b8ea464780f
BLAKE2b-256 2f7550c706843f132b2abd0076279a2cdf3a463c4aecb7ac973f6ba0abb7174d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page