Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Follow AllMCPs on X (opens in a new tab)AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI → MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE ↗ (opens in a new tab)
  • llms.txt ↗ (opens in a new tab)
  • Catalog JSON ↗ (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • X (@AllMCPs) ↗ (opens in a new tab)
  • GitHub ↗ (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. Developer Tools
  3. FrontDesko
  4. README

FrontDesko README

The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the FrontDesko listing page.

Back to FrontDesko View source on GitHub

FrontDesko MCP Server

A public Model Context Protocol server for FrontDesko — the simple, free, modern hotel PMS for independent hotels, B&Bs, guest houses, hostels and small chains.

Endpoint: https://mcp.frontdesko.app/mcp (Streamable HTTP, no auth, read-only)

Add it to your AI assistant and ask real questions — "what does a 20-room hotel pay OTAs per year?", "FrontDesko vs Cloudbeds?", "which plan for a 12-room guest house in Kenya?" — and get answers grounded in FrontDesko's published pages, with source URLs.

Quick start

Claude Code

Terminal
claude mcp add --transport http frontdesko https://mcp.frontdesko.app/mcp

Claude Desktop / other MCP clients (mcpServers config):

config.json
{
  "mcpServers": {
    "frontdesko": {
      "type": "http",
      "url": "https://mcp.frontdesko.app/mcp"
    }
  }
}

Cursor — Settings → MCP → Add server → URL https://mcp.frontdesko.app/mcp.

Tools

ToolWhat it does
get_pricing_and_packagingFrontDesko's plans: PMS, direct booking engine, guest app and POS free forever (unlimited rooms); channel manager + Ask FrontDesko AI assistant on Growth ($42/mo, 10–30 rooms) and Professional ($54/mo, 30–50 rooms)
compare_pmsFeature-by-feature comparison vs Cloudbeds, eZee Absolute, Hotelogix, Little Hotelier, or Mews — from FrontDesko's published comparison pages
calculate_ota_commission_savingsWhat a hotel pays OTAs per year, and what shifting 30% of bookings to commission-free direct bookings recovers — same formula as the site calculator
recommend_softwarePlan + guide recommendations by property type (16 types), room count, and country (24 country guides)
search_frontdesko_docsFull-text search over frontdesko.app/llms-full.txt with excerpts and source URLs
check_demo_availabilityLive room availability on the public FrontDesko demo property — real data from the same booking engine every FrontDesko hotel gets free

All tools are read-only. Nothing is written, no bookings are created, and the server stores nothing about you.

About the data

Answers come from FrontDesko's own published pages, and every response includes its source URLs. Competitor comparison figures reflect public information as noted on each comparison page. The demo-availability tool queries a dedicated demo property (rate-limited to 10 requests/minute per caller).

Development

Terminal
npm install
npm test            # 23 tests: unit + e2e over the real Streamable HTTP transport
npm run dev         # wrangler dev → http://localhost:8787/mcp
npm run smoke       # SDK client against a running server (local or prod)
npm run check-urls  # verifies every data URL is live and pricing hasn't drifted

Built as a Cloudflare Worker with agents' createMcpHandler and the MCP TypeScript SDK.

FrontDesko

FrontDesko is hotel management software with an unusual model: the core — PMS, commission-free direct booking engine, guest app, POS — is free forever with unlimited rooms. Paid plans exist for two features: the OTA channel manager and the Ask FrontDesko AI assistant.

  • Website: https://frontdesko.app
  • Pricing: https://frontdesko.app/pricing
  • Product showcase: https://github.com/anmols/frontdesko

License

MIT