# Frias Family Financial — Muse connector Practice: Frias Family Financial, Wimauma, FL. Scheduling page: https://calendly.com/frias-f-financial Default timezone: America/New_York This host is a private Origin Muse connector. It exposes booking, client intake, and Stripe payment-link tools over REST and MCP. It does not store or return raw PII (no SSN, no full account numbers, no document bodies). Contact emails are accepted on write and returned masked. ## Discovery - GET /openapi.json — public OpenAPI 3.1 (no auth) - GET /llms.txt — this file - GET /docs/example-prompts.md — three example agent prompts - GET /health — liveness and adapter mode (mock vs live) - POST /mcp — MCP Streamable HTTP (tools + prompts) ## Tools 1. list_availability — read consult slots 2. book_consult — mutating 3. reschedule_booking — mutating (live Calendly is cancel + rebook) 4. cancel_booking — mutating 5. create_client_profile — mutating; entity types: individual, joint, trust, llc, s_corp, c_corp, partnership, estate 6. submit_intake_answers — mutating; field-validated answers only 7. create_payment_link — mutating; Stripe hosted link for invoice_id ## Mutation rules - Send Idempotency-Key (header) or idempotency_key (MCP argument) on every mutation. - confirm-before-commit: first call with confirm=false, show the preview to a human, then call again with confirm=true and the confirmation_token. - Never invent live Calendly or Stripe payloads. When CALENDLY_TOKEN / STRIPE_SECRET_KEY are missing, adapters are mocks. ## Example prompts See /docs/example-prompts.md