Voice-Enabled Multi-Step Travel Booking
One conversation. Five connectors. Zero code. Full security.
One sentence triggers an 8-step agentic workflow across 5 enterprise connectors — with conflict detection, budget validation, secure payment, and calendar updates.
check_calendar(date="next Friday")
check_calendar(date="next Saturday") → Saturday is clear
search_flights(to="DEN", date="Saturday", pref="cheapest direct")
check_budget(category="travel", amount=189) → $500 remaining
book_flight(flight_id="UA-1234")charge_card(card_id="@vault:cw-pvt-ajay-default-card", amount=189)
create_event(date="Saturday", title="Flight to Denver UA1234", time="7:00 AM")
| Capability | How It's Used |
|---|---|
| Multi-connector plugin | One plugin wires together Calendar + Flights + Finance + Payment + Notifications |
| Vault-backed secrets | Credit card token, API keys stored in vault — user never sees them, plugin code never embeds them |
| Private scope | Each user's card, calendar, and budget are in their private connector extension — no one else can access them |
| Agentic loop | The AI doesn't just search — it reasons across steps, detects conflicts, asks for decisions, then executes |
| MCP Tools | Each action (check_calendar, search_flights, charge_card) is a registered MCP tool the AI can invoke |
| MCP Prompts | book-travel prompt template guides the multi-step flow |
| Voice | Any voice-to-text frontend (Alexa, Siri, web speech API) sends text to the MCP chat — ContextWeaver handles the rest |
| Platform | Verdict | Why Not |
|---|---|---|
| ChatGPT + Plugins | ⚠️ Partial | No credential hierarchy, no private scoping, no vault. Each plugin is isolated — can't chain Calendar, Flights, Pay, Calendar in one flow |
| Claude + MCP | ⚠️ Partial | MCP tools yes, but single-user, no RBAC, no vault, no connector hierarchy — you'd hardcode API keys |
| Siri / Google Assistant | ⚠️ Limited | Pre-built actions only. Can't add custom connectors, no enterprise RBAC, no budget integration |
| Alexa Skills | ⚠️ Limited | Each skill is siloed. Can't chain across different services in one conversation |
| Microsoft Copilot | ⚠️ Partial | Can access M365 but can't easily wire in custom travel APIs + payment + budget checks |
| ✅ Full Flow | Multi-connector plugin, vault-backed secrets per user, agentic reasoning loop, enterprise RBAC, all in one conversation |
The key differentiator: No other platform lets you visually compose a plugin that chains Calendar + Flights + Finance + Payment + Notifications with per-user vault-backed credentials and team-scoped access control — all deployable across any cloud with zero code.