← rudko.site

INDIVIDUAL MCP TOOL

get_doctor_info

About the vertebrologist: specialty, what he treats, address, slot length, rules (one appointment per day), and how to book.

rudko.sitenone authenticationAvailability not checked

LIVE ENDPOINT

https://rudko.site/mcp

No auth detected

Connect to this endpoint to inspect the live schema for get_doctor_info and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

rudko.site

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.mcp-server]
url = "https://rudko.site/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "mcp-server": {
      "type": "http",
      "url": "https://rudko.site/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: mcp-server
Remote MCP URL: https://rudko.site/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server": {
      "url": "https://rudko.site/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "mcp-server": {
      "type": "http",
      "url": "https://rudko.site/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "mcp-server",
  "transport": "streamable-http",
  "url": "https://rudko.site/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • get_availability — Free appointment slots for the vertebrologist (Chernivtsi).
  • list_current_bookings — The user's current/upcoming appointments (booking_id, date, time, status), nearest first.
  • list_past_bookings — The user's past appointments (booking_id, date, time, status), most recent first.
  • book — REAL action (not a simulation): creates a real appointment with the vertebrologist on the user's behalf.
  • reschedule — REAL action: moves the user's appointment to another free slot the SAME day, ATOMICALLY — if the target slot was just taken, the user KEEPS their current slot (never loses the held slot; that atomic guarantee is the whole point of same-day move).
  • cancel — REAL action: cancels the user's appointment by booking_id (from list_current_bookings) IMMEDIATELY — no confirmation step.