orita-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., "@orita-mcpWhat available slots do I have for my 30-minute meeting on Monday?"
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.
orita-mcp
MCP server that exposes the Orita scheduling API as tools for AI agents (Claude, GPT, etc.)
What is this?
orita-mcp implements the Model Context Protocol (MCP) so that AI agents can:
Look up event types and available booking slots
Book appointments on behalf of users
Retrieve or cancel bookings
Browse public profiles (no auth needed)
All powered by the Orita scheduling API.
Related MCP server: Agorus MCP Server
Install
pip install orita-mcpConfigure
Get your API key from orita.online/dashboard → API Keys.
export ORITA_API_KEY=orita_your_key_hereOptional — override the base URL (useful for self-hosted or staging):
export ORITA_BASE_URL=https://orita.online # defaultRun
# stdio mode (for Claude Desktop, Cursor, etc.)
python -m orita_mcp
# or via the installed script
orita-mcpClaude Desktop integration
Add to your claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"orita": {
"command": "python",
"args": ["-m", "orita_mcp"],
"env": {
"ORITA_API_KEY": "orita_your_key_here"
}
}
}
}Restart Claude Desktop. You should see the Orita tools available in the tools panel.
Available tools
Tool | Description | Auth |
| List all event types for your account | ✅ API key |
| Get available slots for an event type on a date | ✅ API key |
| Book an appointment (name, email, time) | ✅ API key |
| Retrieve booking details by id | ✅ API key |
| Cancel a booking with optional reason | ✅ API key |
| Get a public Orita profile by username | 🌐 Public |
Example usage (in Claude)
What event types do I have set up?
→ orita_get_event_types()
Show me available slots for event type "abc123" on August 15, 2025
→ orita_get_slots("abc123", "2025-08-15")
Book the 10:00am slot for John Doe (john@example.com)
→ orita_book_appointment(...)
Cancel booking xyz789
→ orita_cancel_booking("xyz789", reason="Schedule conflict")Development
git clone https://github.com/Alkilo-do/orita-mcp
cd orita-mcp
pip install -e ".[dev]"
python -m orita_mcpLicense
MIT — see LICENSE.
Built by the Orita team.
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.
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/Alkilo-do/orita-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server