npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@kekwanulabs/syncline-mcp-server

v1.0.36

Published

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

Readme

Syncline MCP Server

Official Model Context Protocol (MCP) server for Syncline - AI-powered meeting scheduling.

📦 Other Implementations: Go (High Performance)Python (Async)

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

Installation

Prerequisites

  • Node.js 18 or higher
  • A Syncline account with API key (Get one here)
  • Claude Desktop app

1. Install the MCP Server

npm install -g @kekwanulabs/syncline-mcp-server

Or install locally in your project:

npm install @kekwanulabs/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": "npx",
      "args": ["-y", "@kekwanulabs/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 [email protected] and [email protected]
     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 [email protected]
     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 [email protected] 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

Support

  • Website: https://syncline.run
  • Get API Key: https://syncline.run/developer
  • Issues: https://github.com/KekwanuLabs/syncline/issues
  • Email: [email protected]

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.