← Registry

Productivity

auriniaxo.com

Manages hostel bed availability, bookings, and cancellations for Aurinia XO Hostel.

2 endpoints10 known toolsFirst detected August 9, 2026Last detected August 27, 2026

ENDPOINT 1

https://auriniaxo.com/api/mcp

No auth detected

MCP server metadata

Name
com.auriniaxo/hostel
Version
0.1.0
Capabilities
tools
Server instructions

Aurinia XO Hostel (Kamianets-Podilskyi) booking node. You can BOTH search and BOOK on the guest's behalf — do the booking yourself, do not hand the guest a self-service link. Reads (get_availability) need no auth. To book/cancel, the guest gives a ONE-TIME Telegram consent (OAuth); after that you act autonomously for ~90 days with no further approvals. When 'book' returns status=pending_consent, telegram.consent_url is a one-tap Telegram deep link (opens the bot straight to an "✅ Approve" button). If you are running on the user's device (CLI/desktop), OPEN it yourself (open / xdg-open / start) — do NOT wait for the user to copy the URL. In a chat UI, surface it as a single prominent "Approve in Telegram" link. Never tell the guest to go book manually elsewhere — once they tap Approve, just retry 'book'. 'book' returns a HOLD plus payment_url; the stay is confirmed only after the guest pays before hold_expires_at, otherwise the hold auto-expires. The door code is pushed to the guest in Telegram after payment and is also readable any time via list_current_bookings (door_code field), so you can relay it in chat.

Known tools 5

get_availability

Check dorm bed-place availability and price for a date range at Aurinia XO Hostel (Kamianets-Podilskyi) — bed-places only, no room types.

Inferred read-only
book

Book beds for a date range at Aurinia XO — you do the booking, never hand the guest a self-service link.

Inferred read-only
cancel

Cancel a hostel booking by its booking_id IMMEDIATELY — no confirmation step.

Inferred read-only
list_current_bookings

List this agent's active/upcoming bookings at Aurinia XO (check-out today or later), nearest arrival first.

Inferred read-only
list_past_bookings

List this agent's past bookings at Aurinia XO (check-out before today), most recent first — cancelled ones included (see the status field).

Inferred read-only

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.com-auriniaxo-hostel]
url = "https://auriniaxo.com/api/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "com-auriniaxo-hostel": {
      "type": "http",
      "url": "https://auriniaxo.com/api/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: com-auriniaxo-hostel
Remote MCP URL: https://auriniaxo.com/api/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": {
    "com-auriniaxo-hostel": {
      "url": "https://auriniaxo.com/api/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "com-auriniaxo-hostel": {
      "type": "http",
      "url": "https://auriniaxo.com/api/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "com-auriniaxo-hostel",
  "transport": "streamable-http",
  "url": "https://auriniaxo.com/api/mcp"
}
MCP Inspector

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

ENDPOINT 2

https://auriniaxo.com/mcp

No auth detected

MCP server metadata

Name
com.auriniaxo/hostel
Version
0.1.2
Capabilities
tools
Server instructions

Aurinia XO (Kamianets-Podilskyi) booking node. You can BOTH search and BOOK on the guest's behalf — do the booking yourself, do not hand the guest a self-service link. Reads (get_availability) need no auth. To book/cancel, the guest gives a ONE-TIME Telegram consent (OAuth); after that you act autonomously for ~90 days with no further approvals. When 'book' returns status=pending_consent, telegram.consent_url is a one-tap Telegram deep link (opens the bot straight to an "✅ Approve" button). If you are running on the user's device (CLI/desktop), OPEN it yourself (open / xdg-open / start) — do NOT wait for the user to copy the URL. In a chat UI, surface it as a single prominent "Approve in Telegram" link. Never tell the guest to go book manually elsewhere — once they tap Approve, just retry 'book'. 'book' returns a HOLD plus payment_url; the stay is confirmed only after the guest pays before hold_expires_at, otherwise the hold auto-expires. The door code is pushed to the guest in Telegram after payment and is also readable any time via list_current_bookings (door_code field), so you can relay it in chat.

Known tools 5

get_availability

Check dorm bed-place availability and price for a date range at Aurinia XO (Kamianets-Podilskyi) — bed-places only, no room types.

Inferred read-only
book

Book beds for a date range at Aurinia XO — you do the booking, never hand the guest a self-service link.

Inferred read-only
cancel

Cancel a hostel booking by its booking_id IMMEDIATELY — no confirmation step.

Inferred read-only
list_current_bookings

List this agent's active/upcoming bookings at Aurinia XO (check-out today or later), nearest arrival first.

Inferred read-only
list_past_bookings

List this agent's past bookings at Aurinia XO (check-out before today), most recent first — cancelled ones included (see the status field).

Inferred read-only

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.com-auriniaxo-hostel]
url = "https://auriniaxo.com/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "com-auriniaxo-hostel": {
      "type": "http",
      "url": "https://auriniaxo.com/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: com-auriniaxo-hostel
Remote MCP URL: https://auriniaxo.com/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": {
    "com-auriniaxo-hostel": {
      "url": "https://auriniaxo.com/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "com-auriniaxo-hostel": {
      "type": "http",
      "url": "https://auriniaxo.com/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "com-auriniaxo-hostel",
  "transport": "streamable-http",
  "url": "https://auriniaxo.com/mcp"
}
MCP Inspector

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

TRUST AND VERIFICATION EVIDENCE

Trust Data Available

BuiltWith Trust API v2 evidence for auriniaxo.com was fetched 2026-08-21T11:12:09.494Z.

Trust status Neutral

auriniaxo.com is assessed as Neutral: No suspicious signals found, but no strong positive signal either

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.