Connect Apps — CompliCore Integration Skill

SkillCommerce & finance

Once added, your AI can manage your CompliCore external app connections for you. It covers property management systems, booking channels, payment processors, smart locks, accounting tools, and insurance services. Your AI can show which apps are already connected and connect new ones when you ask.

Available today. Use it from your connected AI after setup.

After adding the skill, ask your AI to list your current app connections. Then tell it which apps you want to connect.

Then ask your AI: use the Connect Apps — CompliCore Integration Skill skill

What your AI can do with it

  • List your current CompliCore app connections
  • Connect property management systems like Guesty, Hostaway, Lodgify, Beds24, and Hostfully
  • Connect booking channels like Airbnb, VRBO, and Booking.com
  • Connect payment processors like Stripe and PayPal
  • Connect smart locks from August, Schlage, and Yale
  • Connect accounting tools like QuickBooks and Xero, plus insurance through Superhog

What this skill tells your AI

The instructions your AI receives, as published by fdu-ins/insurance-skills in Skills/connect-apps/SKILL.md and read by ahel’s review.

Manage external application integrations for the CompliCore rental platform. This skill provides context and instructions for working with the connect-apps-plugin MCP server located at connect-apps-plugin/.

When to Apply

Use this skill when the user asks about:

  • Connecting, disconnecting, or configuring external apps
  • Syncing data with PMS, OTA, payment, smart-lock, or accounting systems
  • Checking environment variables or credentials for integrations
  • Diagnosing sync errors or connection issues
  • Listing available connectors and their status

Architecture

connect-apps-plugin/
├── mcp.json           # MCP server manifest
├── package.json       # Dependencies (@modelcontextprotocol/sdk, zod)
├── tsconfig.json      # TypeScript config (ES2022, ESNext modules)
├── src/
│   └── index.ts       # MCP server with 7 tools (864 lines)
└── dist/              # Compiled output (after npm run build)

Runtime: Node.js ≥ 20, TypeScript, MCP stdio transport Launch: claude --plugin-dir ./connect-apps-plugin

Connector Registry

IDNameCategoryAuthRequired Env Vars
guestyGuestypmsOAuthGUESTY_CLIENT_ID, GUESTY_CLIENT_SECRET
hostawayHostawaypmsAPI KeyHOSTAWAY_API_KEY, HOSTAWAY_ACCOUNT_ID
lodgifyLodgifypmsAPI KeyLODGIFY_API_KEY
beds24Beds24pmsAPI KeyBEDS24_PROP_KEY, BEDS24_API_KEY
hostfullyHostfullypmsOAuthHOSTFULLY_CLIENT_ID, HOSTFULLY_CLIENT_SECRET
airbnbAirbnbotaOAuthAIRBNB_CLIENT_ID, AIRBNB_CLIENT_SECRET
vrboVRBOotaAPI KeyVRBO_API_KEY, VRBO_ADVERTISER_ID
booking-comBooking.comotaAPI KeyBOOKINGCOM_API_KEY, BOOKINGCOM_HOTEL_ID
stripeStripepaymentAPI KeySTRIPE_SECRET_KEY, STRIPE_PUBLISHABLE_KEY, STRIPE_WEBHOOK_SECRET
paypalPayPalpaymentOAuthPAYPAL_CLIENT_ID, PAYPAL_CLIENT_SECRET
augustAugust Smart Locksmart-lockOAuthAUGUST_CLIENT_ID, AUGUST_CLIENT_SECRET
schlageSchlage Encodesmart-lockAPI KeySCHLAGE_API_KEY
yaleYale Accesssmart-lockOAuthYALE_CLIENT_ID, YALE_CLIENT_SECRET
quickbooksQuickBooks OnlineaccountingOAuthQUICKBOOKS_CLIENT_ID, QUICKBOOKS_CLIENT_SECRET
xeroXeroaccountingOAuthXERO_CLIENT_ID, XERO_CLIENT_SECRET
superhogSuperhoginsuranceAPI KeySUPERHOG_API_KEY, SUPERHOG_HOST_ID

MCP Tools Reference

list_connectors

List all connectors, optionally filtered by category or status.

  • category (optional): pms | ota | payment | smart-lock | accounting | insurance
  • status (optional): connected | disconnected | error | configured

get_connector

Get details for a specific connector including env vars and sync history.

  • connectorId (required): Connector ID string (e.g. guesty, stripe)

connect_app

Activate a connection with credentials.

  • connectorId (required): Connector ID
  • apiKey (optional): For API-key connectors
  • oauthCode (optional): For OAuth connectors
  • webhookUrl (optional): Webhook endpoint to register

disconnect_app

Disconnect and revoke credentials.

  • connectorId (required): Connector ID

trigger_sync

Trigger a data sync with a connected app.

  • connectorId (required): Connector ID
  • syncType (optional, default full): full | listings | bookings | availability | pricing | payouts

get_sync_history

View recent sync history.

  • connectorId (optional): Filter by connector
  • limit (optional, default 20): Max records (1–100)

check_env_vars

Check which required env vars are set vs missing for a connector. Does not expose secret values.

  • connectorId (required): Connector ID

Workflow Patterns

First-Time Setup

  1. list_connectors — see what's available
  2. check_env_vars with target connector — verify credentials are configured
  3. connect_app with credentials — activate the connection
  4. trigger_sync with syncType: "full" — pull initial data
  5. get_sync_history — verify the sync completed

Diagnose a Failing Connector

  1. get_connector — check status and recent sync errors
  2. check_env_vars — look for missing credentials
  3. If status is error, disconnect_app then connect_app to re-auth
  4. trigger_sync — test with a fresh sync

Daily Operations

  • list_connectors with status: "error" — find broken connections
  • get_sync_history with limit: 5 — check recent activity
  • trigger_sync with syncType: "availability" — quick calendar sync

Development

cd connect-apps-plugin
npm install          # Install deps
npm run build        # Compile TypeScript → dist/
npm run dev          # Run with tsx (hot-reload)
npm start            # Run compiled output

Adding a New Connector

  1. Add entry to the connectors array in src/index.ts
  2. Define: id, name, category, authType, status, docsUrl, description, requiredEnvVars
  3. Rebuild: npm run build

Key Types

type ConnectorCategory = "pms" | "ota" | "payment" | "smart-lock" | "accounting" | "insurance";
type ConnectorStatus = "connected" | "disconnected" | "error" | "configured";
interface AppConnector {
  id: string; name: string; category: ConnectorCategory;
  authType: "oauth" | "apiKey" | "webhook";
  status: ConnectorStatus; docsUrl: string;
  description: string; requiredEnvVars: string[];
}

Related Files

  • connect-apps-plugin/src/index.ts — Full MCP server implementation
  • connect-apps-plugin/mcp.json — Server manifest
  • AGENTS.md — LodgingOrchestrator agent manifesto (references settlement contracts)
  • contracts/ComplicoreInstantSettlement.sol — Settlement smart contract
  • backend/src/routes/ — Backend API routes that consume synced data

Signals

GitHub stars
73
Forks
19
Last commit
Jul 2026
Advanced
Catalog kind
skill
Gateway key
connect-apps-fdu-ins
Source
github.com/fdu-ins/insurance-skills