Discussion prototype 0.1
Not a standard
Research question
Can one small Calendar contract describe the same job across unlike backends?
A Capability Class Profile is a proposal for naming a capability and its behavior separately from one server’s tool names. This page examines that proposal with a narrow Calendar example.
01 Worked example
02 Interpretation
03 0.1 surface
04 Open questions
Scenario
Find 45 minutes Thursday afternoon and book Design review .
Fixture date: 2026-02-26 · America/New_York
01
calendar.find_free_time
{
"duration_minutes": 45,
"window_start": "2026-02-26T13:00:00-05:00",
"window_end": "2026-02-26T17:00:00-05:00",
"max_results": 3
}
02
calendar.create_event
{
"title": "Design review",
"start": "2026-02-26T15:00:00-05:00",
"end": "2026-02-26T15:45:00-05:00",
"timezone": "America/New_York"
}
Display a backend trace
Native Direct profile operations
Projected Legacy API plus mapping
01
calendar.find_free_time
direct
Arguments and result
Arguments { "duration_minutes": 45, "window_start": "2026-02-26T13:00:00-05:00", "window_end": "2026-02-26T17:00:00-05:00", "max_results": 3 }
Result { "slots": [{ "start": "2026-02-26T15:00:00-05:00", "end": "2026-02-26T17:00:00-05:00" }] }
02
calendar.create_event
direct
Arguments and result
Arguments { "title": "Design review", "start": "2026-02-26T15:00:00-05:00", "end": "2026-02-26T15:45:00-05:00", "timezone": "America/New_York" }
Result { "title": "Design review", "start": "2026-02-26T15:00:00-05:00", "end": "2026-02-26T15:45:00-05:00", "timezone": "America/New_York", "state": "confirmed" }
Run fixed scenario
Native simulation ready.
✓ Compared fields match in this fixture
1 PM 2 PM 3 PM 4 PM 5 PM
Roadmap 1:00–2:00
Focus 2:30–3:00
Design review 3:00–3:45
✓
Fixture result Design review
3:00–3:45 PM
Expected fixture result: Design review is created from 3:00–3:45 PM.
The projected path is legacy.events.list → projection.compute_free_intervals → legacy.appointments.insert → projection.normalize_event. Enable JavaScript to switch the displayed trace.
i The comparison includes free intervals plus event title, start, end, timezone, and state. Opaque backend IDs are intentionally excluded.
What this page shows
The two simulation functions receive identical profile request objects.
The projected path translates those requests into a differently shaped API trace.
Compared fields match in this fixture.
The comparison can be inspected in source rather than inferred from the animation.
What this page does not show
Behavior against two independently maintained Calendar servers.
MCP discovery, transport, authentication, retries, or failure recovery.
Conformance of any implementation or completeness of the proposed contract.
A stable specification, official runner, passing Claim, or receipt.
Inspect the comparison
The relevant artifacts are public.
Profile state draft
Core baseline org.classprofiles.calendar/core@1
Core operations 6
Optional facets 3
Fixture cases 15 across 5 files
Reference week 2026-02-23 · America/New_York
Core operations
calendar.list_events
calendar.get_event
calendar.create_event
calendar.update_event
calendar.cancel_event
calendar.find_free_time
Optional facets
calendar/recurrence@1
calendar/rsvp@1
calendar/reminders@1
A vendor travel-buffer member is included only as an extension example.
01 Are the six Core operations the right behavioral floor for a Calendar capability?
02 Which result fields should count when two implementations are compared, and which must remain backend-specific?
03 What review evidence should a projection mapping provide?
04 Which edge cases are required before results from independent servers would be informative?
Review the artifacts or open an issue in the repository →