Developers

Curated docs for a dashboard-first evaluation model

ChipletOS exposes 261 `/v1` routes; the public entry point is curated around the signoff product. Free trials inspect the API surface through the dashboard and can run RF, isolation, bondability, and S2P workflows. Full API keys, exports, and MCP unlock on enterprise.

Auth model

  • Public: site pages, health, OpenAPI docs, and buyer-facing documentation.
  • Free trial: signed dashboard session, 24 hours, 2 heavy runs, 100 light requests/hour, no raw API keys, no exports, no MCP, no admin.
  • Starter+: reusable API keys, exports, MCP, and admin/openapi inventory.

Curated route quickstart

POST/v1/glass-pdk/tgv-signoff

Glass TGV RF signoff with OOD/confidence state, named regime candidates, and Touchstone content.

POST/v1/chiplet-suite/package-signoff

Flagship package workflow combining Glass PDK RF, EM Isolation Compiler, and Bondability Pipeline into one decision summary.

POST/v1/isocompiler/isolation-signoff

Buyer-facing isolation margin signoff with limiting frequency and corrective actions.

POST/v1/bondability/bondability-signoff

Calibration-aware bondability screening with uncertainty, dominant contributors, and normalized risk rank.

GET/v1/library/s2p

Manifest-backed S2P registry access aligned to the validated 995-asset curated library.

POST/v1/interface-signoff/ucie

UCIe Advanced/Standard pre-compliance channel-budget screening (also /hbm4, /pcie-gen6, /800g).

POST/v1/glass-pdk/spice-export

Lumped π-section SPICE netlist (.cir) from BEM RLGC. Configurable n_spice_segments.

POST/v1/glass-pdk/report-export

One-pager signoff report (PDF if reportlab installed, plaintext fallback).

POST/v1/glass-pdk/aedt-export

Ansys AEDT (HFSS) IronPython project script with parameterized TGV unit cell.

POST/v1/glass-pdk/ads-bundle-export

Keysight ADS-compatible Touchstone + DesignKit YAML zip bundle.

GET/v1/literature/witnesses

Paper-to-dataset witness corpus (every record source_type-tagged).

What the trial can see

  • All core dashboard pages and route-backed workflows
  • 2.95M live BEM rows represented in the product surface
  • 995 curated S2P artifacts represented in the release library
  • 25-case package-signoff benchmark semantics mirrored in the public proof pages
  • Curated API explorer and route examples

Provenance tiers

  • ANALYTICAL
  • BEM
  • INDEPENDENTLY_CROSS_CHECKED
  • CALIBRATED
  • EXTERNAL_VALIDATION_PENDING

The platform distinguishes analytical, BEM, independent cross-checks, calibration, and external-validation-pending states. That boundary is part of the product, not a footnote.

MCP

Agent-callable signoff (Claude / Codex / GPT-5)

ChipletOS exposes the inverse-design and package-signoff loop as a Model Context Protocol server. Wire your agent into the same workflow buyers use: target Z₀ → recovered geometry → BEM cross-check → PROV 7/8/9 multi-physics signoff in one tool chain. 16 tools today; the 5 critical-path ones are inverse_geometry_design, predict_impedance_with_palace_correction, cross_solver_witness, regime_envelopes, and package_signoff.

// claude_desktop_config.json (or any MCP client config)
{
  "mcpServers": {
    "chipletos": {
      "url": "https://api.chipletos.com/mcp",
      "headers": { "Authorization": "Bearer ${CHIPLETOS_API_KEY}" }
    }
  }
}

// Then in Claude / Codex / GPT-5 with tool use:
//   "Design a 50-Ω TGV at 28 GHz on Eagle XG glass; refine with adjoint-BEM."
// The agent calls inverse_geometry_design(target_z0_ohm=50, freq_hz=28e9,
//   glass_name="EagleXG", refine="adjoint", include_signoff=true)
// and gets back: geometry + cross-physics agreement + signoff verdict.

MCP available on Starter+. The same tool set is callable over REST without MCP if your stack does not speak the protocol — see the route quickstart above.

Artifact exports

Artifact exports

Every BEM run can be downloaded in the format your EDA tool wants. SPICE for ngspice/HSPICE, AEDT IronPython for HFSS, Keysight ADS Touchstone bundle, signed-off PDF for the diligence binder. CLI and REST in lockstep.

# CLI
genesis signoff package.yaml --export spice,pdf,aedt,ads -o signoff_out/

# REST equivalents
curl -X POST $API/v1/glass-pdk/spice-export       -d @geom.json -H "content-type: application/json" -o kit.cir
curl -X POST $API/v1/glass-pdk/report-export      -d @geom.json -H "content-type: application/json" -o kit.pdf
curl -X POST $API/v1/glass-pdk/aedt-export        -d @geom.json -H "content-type: application/json" -o kit_aedt.py
curl -X POST $API/v1/glass-pdk/ads-bundle-export  -d @geom.json -H "content-type: application/json" -o kit_ads.zip

EDA-compatible artifact exports — the receiving tool imports the file via its own import wizard. Not native vendor-tool integrations.