Versioning guide
Detect breaking changes in agent tool contracts
Classify required fields, enums, unions, side effects, and output changes before an agent tool deployment breaks callers.
Traditional API diffs miss model-facing behavior. Renaming a description cue, widening an enum, or changing side-effect expectations can alter tool selection even when validation still passes.
Read the schema and its provider wrapper as one contract. APITC distinguishes target requirements from portable JSON Schema, applies mechanical repairs only when intent is recoverable, and identifies transformations that can change meaning.
Diagnostic procedure
Repair the schema, then recompile.
- 01
Diff canonical intent
Compare names, descriptions, optionality, enum meaning, input shapes, output shapes, and annotations.
- 02
Compile every supported target
A source-compatible edit can exceed one provider’s schema subset or complexity budget.
- 03
Classify deployment risk
Separate validation breaks, caller-adapter breaks, and model-routing behavior changes.
status enum: ["open", "closed"]
Adding "all" may be schema-compatible but changes routing and result size; review as behavioral risk.
- 4
- breaking
- 0
- risky
- 2
- additive
GET /orders/{id}Operation removed
GET /orders/searchOperation added
GET /orders › query.regionRequired parameter added
components.schemas.Order.currencyProperty became required
components.schemas.Order.status.enumAllowed enum values narrowed
components.schemas.Order.currencyProperty added
No account · no upload · no endpoint calledOpen the full openapi impact diff and operating notes →
FAQ
Before you ship
Does APITC upload my schema?
No. Parsing, diagnostics, and compilation run in your browser tab.
Is the compiled result guaranteed to preserve meaning?
Safe repairs are deterministic. When the target provider cannot express a source constraint, APITC labels the transform as lossy instead of hiding it.
Protocol behavior checked against the MCP 2026 release candidate. Recheck your pinned provider/API version before production deployment.