Back to Browse

Orita MCP Server

Developer ToolsModerate5.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

Provider resolution for AI apps — search, rank, hold, confirm bookings across your provider network.

About

Provider resolution for AI apps — search, rank, hold, confirm bookings across your provider network.

Security Report

5.2
Moderate5.2Moderate Risk

Well-structured MCP server with proper authentication design and clean code. API key is correctly loaded from environment variables and used to authenticate sensitive operations. The server appropriately gates authenticated tools while exposing the public profile endpoint without authentication. No malicious patterns, code injection vulnerabilities, or credential leakage detected. Supply chain analysis found 5 known vulnerabilities in dependencies (0 critical, 5 high severity). Package verification found 1 issue.

5 files analyzed · 9 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

What You'll Need

Set these up before or after installing:

Orita API key — get one at orita.online/settingsRequired

Environment variable: ORITA_API_KEY

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-alkilo-do-orita-provider-resolution": {
      "env": {
        "ORITA_API_KEY": "your-orita-api-key-here"
      },
      "args": [
        "orita-mcp"
      ],
      "command": "uvx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

orita-mcp

MCP server for the Orita Provider Resolution API — lets AI agents search a provider network, apply eligibility rules, resolve availability, and safely confirm bookings.

PyPI MCP Registry License: MIT

What this does

Orita resolves the provider-routing problem:

Your application knows what service the customer needs, but not which professional is eligible and available.

This MCP server exposes that resolution workflow as tools that AI agents (Claude, Cursor, and compatible clients) can call natively.

Primary workflow

resolve_scheduling          → search provider network, return ranked options
hold_scheduling_option      → temporarily reserve the selected slot
confirm_scheduling_resolution → confirm booking after customer approval

Tools

ToolDescriptionModifies state?
resolve_schedulingSearch provider network, apply eligibility rules, return ranked explained optionsNo
get_resolutionRetrieve resolution with options, exclusions, and expiryNo
hold_scheduling_optionTemporarily hold a slot (2 min default, 10 min max)Application-defined
release_scheduling_optionRelease a held slotYes
confirm_scheduling_resolutionCreate the booking after customer approvalYes — requires approval
reschedule_bookingMove to a new approved slotYes — requires approval
cancel_bookingCancel a bookingYes — requires approval
get_bookingRetrieve booking detailsNo
list_professionalsList providers in the networkNo
get_slotsGet slots for a known providerNo

Agent safety

✓ resolve_scheduling, get_resolution, list_professionals, get_slots
  → No customer approval required

⚠ hold_scheduling_option
  → Application-defined

✗ confirm_scheduling_resolution, reschedule_booking, cancel_booking
  → Require explicit customer approval before calling
  → Display provider, service, time, timezone, and cancellation policy first

Never call confirm_scheduling_resolution until the customer has explicitly approved:

  • Provider name
  • Service
  • Date and time
  • Timezone
  • Cancellation policy

Connect via remote server

{
  "mcpServers": {
    "orita": {
      "url": "https://orita.online/api/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_ORITA_API_KEY"
      }
    }
  }
}

Note: Requests must include Accept: application/json, text/event-stream. MCP-compatible clients send this automatically.

Install via PyPI

pip install orita-mcp
ORITA_API_KEY=orita_... python -m orita_mcp

Get an API key

Free at orita.online/sign-up — no credit card. 50 active providers, 5,000 resolutions/month included on the free plan.

Resources

Reviews

No reviews yet

Be the first to review this server!