Schedulia MCP
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., "@Schedulia MCPshow me my meeting schedule for today"
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.
📅 Schedulia MCP - Meeting Scheduling Assistant
Related MCP server: MCP Calendar Assistant
🚀 Getting Started
Prerequisites
✅ Git
✅ Python
✅ UV (Python Package Manager) - UV Installation Guide
⚙️ Setup Instructions
Get Your API Key
Get your API key from schedulia.org 🔑
Clone Repository
git clone https://github.com/watanka/schedulia-mcp.git cd schedulia-mcpRun Server
uv run server.py --api-key={your-api-key} # Replace with your API key!Configure MCP Server
{ "mcpServers": { "schedulia-mcp": { "command": "uv", "args": [ "--directory", "/path/to/mcp/server", "run", "server.py", "--api-key", "{your-api-key}" ] } } }Register MCP Server on your host(Claude Desktop, Cursor)
🔧 Integration Options
For Claude Desktop users: Configuration Guide
For Cursor users: Configuration Guide
🛠️ Available Tools
📊 View Meeting Schedules
view_meeting_schedules(date): Check all scheduled meetings for a specific date
Ask to see your meetings using the view_meeting_schedules tool. You can specify a date or view all schedules.
Prompt Examples:
"Please show me my meeting schedules"
"Can you check my meetings for today using view_meeting_schedules?"
"Use view_meeting_schedules to show my upcoming meetings"
Example Response:
{
"id": 1,
"host": {"name": "John Doe", "email": "john@example.com"},
"participants": [
{"name": "Alice Smith", "email": "alice@example.com"}
],
"time": {
"start_time": "2024-03-20T14:00:00",
"end_time": "2024-03-20T15:00:00"
},
"title": "Project Review",
"description": "Weekly sync meeting"
}📬 View Meeting Requests
view_meeting_requests(): Check all incoming meeting requests
Use the view_meeting_requests tool to check any pending meeting invitations.
Prompt Examples:
"Use view_meeting_requests to show my pending invitations"
"Check my meeting requests using view_meeting_requests tool"
"Show me all meeting requests in the system"
Example Response:
{
"request_id": 1,
"sender": {"name": "Alice Smith", "email": "alice@example.com"},
"receiver_email": "john@example.com",
"available_times": [
{
"start_time": "2024-03-21T15:00:00",
"end_time": "2024-03-21T16:00:00"
}
],
"status": "PENDING",
"title": "Product Discussion"
}✅ Respond to Meeting Request
respond_to_meeting_request(request_id, accept, selected_time): Accept or decline meeting requests
This is a two-step process using both view_meeting_requests and respond_to_meeting_request tools.
Step 1 - View Requests:
"First, use view_meeting_requests to show me pending invitations"
"Let me check the meeting requests using view_meeting_requests tool"
Step 2 - Respond:
"Use respond_to_meeting_request to accept request ID 1 with the proposed time slot"
"Please use respond_to_meeting_request to decline meeting request #2"
Example Conversation:
User: "First, show me my meeting requests using view_meeting_requests"
Assistant: "Here are your pending meeting requests: [shows requests]"
User: "Great, I want to accept request ID 1 using respond_to_meeting_request for the March 21st 15:00-16:00 slot"📨 Send Meeting Request
request_meeting(receiver_email, available_times, title, description): Create and send new meeting requests
Use the request_meeting tool to create new meeting requests. You'll need to provide receiver's email, available times, title, and description.
Prompt Examples:
"Use request_meeting to schedule a meeting with alice@example.com"
"I need to send a meeting request using request_meeting tool for tomorrow"
"Create a new meeting request with request_meeting for the team sync"
Example Request:
"Please use request_meeting to set up a meeting with following details:
- Receiver: alice@example.com
- Title: Project Kickoff
- Description: Initial project planning meeting
- Available times:
- March 25th, 2024 14:00-15:00
- March 26th, 2024 11:00-12:00"Example Response:
{
"request_id": 3,
"sender": {"name": "John Doe", "email": "john@example.com"},
"receiver_email": "alice@example.com",
"available_times": [
{
"start_time": "2024-03-25T14:00:00",
"end_time": "2024-03-25T15:00:00"
},
{
"start_time": "2024-03-26T11:00:00",
"end_time": "2024-03-26T12:00:00"
}
],
"status": "PENDING",
"title": "Project Kickoff",
"description": "Initial project planning meeting"
}Demo
Need help? Check out demo videos! 🎥

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
- Flicense-qualityDmaintenanceEnables AI assistants to intelligently schedule meetings by checking Microsoft Outlook calendars, finding available time slots across multiple participants, and automatically booking meetings with Teams integration. Uses Microsoft Graph API with smart fallback logic for optimal scheduling.Last updated1
- Flicense-qualityDmaintenanceEnables AI assistants to manage calendars and tasks through natural language, supporting Google Calendar operations like event creation, availability checking, and smart scheduling. It features schedule analysis, task reminders, and meeting time recommendations to streamline productivity.Last updated
- AlicenseAqualityDmaintenanceIntegrates the MeetSync calendar negotiation API to enable AI agents to autonomously manage participants, find mutual availability, and handle meeting bookings. It exposes 19 tools for end-to-end scheduling workflows including participant preferences, proposals, and confirmations.Last updated197MIT
- AlicenseAqualityDmaintenanceAI-powered scheduling assistant that checks calendars, finds mutual availability, and books meetings via natural language commands.Last updated31MIT
Related MCP Connectors
AI-native scheduling: check availability, book meetings, cancel and reschedule via MCP
Schedule and manage Google Calendar events directly from your workspace. Check availability, view…
Calendar API for AI agents: events, availability, Google/Microsoft setup, scheduling, and iCal.
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/watanka/schedulia-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server