Connect Apps — CompliCore Integration Skill
SkillCommerce & financeOnce 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.
No other account needed.
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
| ID | Name | Category | Auth | Required Env Vars |
|---|---|---|---|---|
guesty | Guesty | pms | OAuth | GUESTY_CLIENT_ID, GUESTY_CLIENT_SECRET |
hostaway | Hostaway | pms | API Key | HOSTAWAY_API_KEY, HOSTAWAY_ACCOUNT_ID |
lodgify | Lodgify | pms | API Key | LODGIFY_API_KEY |
beds24 | Beds24 | pms | API Key | BEDS24_PROP_KEY, BEDS24_API_KEY |
hostfully | Hostfully | pms | OAuth | HOSTFULLY_CLIENT_ID, HOSTFULLY_CLIENT_SECRET |
airbnb | Airbnb | ota | OAuth | AIRBNB_CLIENT_ID, AIRBNB_CLIENT_SECRET |
vrbo | VRBO | ota | API Key | VRBO_API_KEY, VRBO_ADVERTISER_ID |
booking-com | Booking.com | ota | API Key | BOOKINGCOM_API_KEY, BOOKINGCOM_HOTEL_ID |
stripe | Stripe | payment | API Key | STRIPE_SECRET_KEY, STRIPE_PUBLISHABLE_KEY, STRIPE_WEBHOOK_SECRET |
paypal | PayPal | payment | OAuth | PAYPAL_CLIENT_ID, PAYPAL_CLIENT_SECRET |
august | August Smart Lock | smart-lock | OAuth | AUGUST_CLIENT_ID, AUGUST_CLIENT_SECRET |
schlage | Schlage Encode | smart-lock | API Key | SCHLAGE_API_KEY |
yale | Yale Access | smart-lock | OAuth | YALE_CLIENT_ID, YALE_CLIENT_SECRET |
quickbooks | QuickBooks Online | accounting | OAuth | QUICKBOOKS_CLIENT_ID, QUICKBOOKS_CLIENT_SECRET |
xero | Xero | accounting | OAuth | XERO_CLIENT_ID, XERO_CLIENT_SECRET |
superhog | Superhog | insurance | API Key | SUPERHOG_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
list_connectors— see what's availablecheck_env_varswith target connector — verify credentials are configuredconnect_appwith credentials — activate the connectiontrigger_syncwithsyncType: "full"— pull initial dataget_sync_history— verify the sync completed
Diagnose a Failing Connector
get_connector— check status and recent sync errorscheck_env_vars— look for missing credentials- If status is
error,disconnect_appthenconnect_appto re-auth trigger_sync— test with a fresh sync
Daily Operations
list_connectorswithstatus: "error"— find broken connectionsget_sync_historywithlimit: 5— check recent activitytrigger_syncwithsyncType: "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
- Add entry to the
connectorsarray insrc/index.ts - Define:
id,name,category,authType,status,docsUrl,description,requiredEnvVars - 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 implementationconnect-apps-plugin/mcp.json— Server manifestAGENTS.md— LodgingOrchestrator agent manifesto (references settlement contracts)contracts/ComplicoreInstantSettlement.sol— Settlement smart contractbackend/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