{"name":"caliper","version":"0.1.0","description":"Geometry and CAD file metadata extraction. Accepts geometry files by URL or base64, returns structured statistics as JSON. Payment required via x402 (USDC on Base).","pricing":{"model":"per_request","payment_protocols":["x402","mpp"],"asset":"USDC","network":"base","price_per_mb_usd":0.02,"stripe_fee_surcharge_usd":0.35,"free_tier_max_kb":150,"free_tier_note":"Files under 150KB are free. No payment required.","pricing_description":"$0.02/MB of billable data (file size minus 150KB free tier), rounded up to the next cent. Card payments via MPP add a $0.35 surcharge to cover Stripe processing fees.","base64_max_kb":200,"base64_note":"Base64 payloads are limited to 200KB decoded. Use file_url for larger files to avoid consuming model context window budget."},"tools":[{"name":"format_detect","description":"Detect the geometry file format from a filename or URL.\n\n    Returns the detected format name and whether it is currently supported.\n    Use this to check format support before making a paid analysis call.\n    No payment required. Privacy policy: https://caliper.fit/privacy","inputSchema":{"type":"object","properties":{"filename":{"type":"string","description":"Filename or URL to check. The format is detected from the file extension."}},"required":["filename"]}},{"name":"feature_request","description":"Request a feature or format that Caliper doesn't support yet.\n\n    Free, no payment required. Use this when you need a capability that\n    Caliper doesn't currently offer — especially unsupported file formats\n    (STEP, IGES) or analysis features not yet available. Requests are\n    logged and used to prioritize development.\n    Privacy policy: https://caliper.fit/privacy","inputSchema":{"type":"object","properties":{"description":{"type":"string","description":"A short description of the feature or format you need. Examples: 'STEP file support', 'volume comparison between two files', 'export to USD format'. This helps prioritize development."}},"required":["description"]}},{"name":"format_auto","description":"Auto-detect geometry file format and extract metadata statistics.\n\n    Accepts a 3D geometry file via URL or base64 and returns structured\n    metadata: bounding boxes, triangle counts, manifold analysis, point\n    cloud statistics, and more. This is a read-only analysis tool — it\n    does not perform mesh repair, format conversion, or boolean operations.\n\n    Supported formats: STL, OBJ, PLY, PCD, LAS/LAZ, glTF/GLB.\n    STEP and IGES support is planned.\n\n    Provide either file_url (preferred for large files) or file_b64\n    (for files under 200KB). Include filename for format detection if\n    using file_b64. When using file_url, the format is detected from\n    the URL path extension; filename is not required.\n\n    Files under 150KB are free. Larger files cost $0.02/MB via x402\n    (USDC on Base) or card via MPP (Stripe; adds $0.35 surcharge).\n    If payment is required, the response includes payment details.\n    Retry with the payment argument containing the payment proof.\n    Privacy policy: https://caliper.fit/privacy","inputSchema":{"type":"object","properties":{"file_url":{"type":"string","description":"HTTP/HTTPS URL of the geometry file to analyze. Preferred for large files (over 200KB). The file format is detected from the URL path extension, so the filename parameter is not needed when using file_url. Max 100MB. Default: null (omit if providing file_b64 instead)."},"file_b64":{"type":"string","description":"Base64-encoded file content. Max 200KB decoded. Use file_url for larger files to avoid consuming model context window budget. Default: null (omit if providing file_url instead)."},"filename":{"type":"string","description":"Original filename with extension (e.g. 'model.stl'). Required for format detection when using file_b64. Not needed when using file_url (format is detected from the URL path). Default: null."},"payment":{"type":"string","description":"Payment proof as a JSON string. Set this when retrying after a payment_required response. For x402: must contain 'transaction' (on-chain tx hash), 'network', and 'priceToken' from the payment_required response. For MPP: must contain 'challenge' and 'payload' from the org.paymentauth/credential flow. Default: null (omit on first call; set only when retrying with payment)."}}}},{"name":"format_stl","description":"Extract metadata from an STL file (ASCII or binary).\n\n    Returns triangle count, bounding box, surface area, volume,\n    manifold analysis (watertight, open edges, non-manifold edges),\n    triangle quality metrics, vertex deduplication count, mean edge\n    length, minimum bounding sphere, and a noise estimate derived\n    from planar region fitting.\n\n    Payment via x402 (USDC on Base) or card via MPP (Stripe). See format_auto\n    for payment flow details. Privacy policy: https://caliper.fit/privacy","inputSchema":{"type":"object","properties":{"file_url":{"type":"string","description":"HTTP/HTTPS URL of the geometry file to analyze. Preferred for large files (over 200KB). The file format is detected from the URL path extension, so the filename parameter is not needed when using file_url. Max 100MB. Default: null (omit if providing file_b64 instead)."},"file_b64":{"type":"string","description":"Base64-encoded file content. Max 200KB decoded. Use file_url for larger files to avoid consuming model context window budget. Default: null (omit if providing file_url instead)."},"filename":{"type":"string","description":"Original filename with extension (e.g. 'model.stl'). Required for format detection when using file_b64. Not needed when using file_url (format is detected from the URL path). Default: null."},"payment":{"type":"string","description":"Payment proof as a JSON string. Set this when retrying after a payment_required response. For x402: must contain 'transaction' (on-chain tx hash), 'network', and 'priceToken' from the payment_required response. For MPP: must contain 'challenge' and 'payload' from the org.paymentauth/credential flow. Default: null (omit on first call; set only when retrying with payment)."}}}},{"name":"format_obj","description":"Extract metadata from an OBJ file.\n\n    Returns vertex/normal/texcoord/face counts, triangle/quad/polygon\n    breakdown, material and group counts, bounding box, surface area,\n    and triangulation status.\n\n    Payment via x402 (USDC on Base) or card via MPP (Stripe). See format_auto\n    for payment flow details. Privacy policy: https://caliper.fit/privacy","inputSchema":{"type":"object","properties":{"file_url":{"type":"string","description":"HTTP/HTTPS URL of the geometry file to analyze. Preferred for large files (over 200KB). The file format is detected from the URL path extension, so the filename parameter is not needed when using file_url. Max 100MB. Default: null (omit if providing file_b64 instead)."},"file_b64":{"type":"string","description":"Base64-encoded file content. Max 200KB decoded. Use file_url for larger files to avoid consuming model context window budget. Default: null (omit if providing file_url instead)."},"filename":{"type":"string","description":"Original filename with extension (e.g. 'model.stl'). Required for format detection when using file_b64. Not needed when using file_url (format is detected from the URL path). Default: null."},"payment":{"type":"string","description":"Payment proof as a JSON string. Set this when retrying after a payment_required response. For x402: must contain 'transaction' (on-chain tx hash), 'network', and 'priceToken' from the payment_required response. For MPP: must contain 'challenge' and 'payload' from the org.paymentauth/credential flow. Default: null (omit on first call; set only when retrying with payment)."}}}},{"name":"format_ply","description":"Extract metadata from a PLY file (ASCII or binary).\n\n    Returns vertex/face counts, element properties, feature detection\n    (normals, colors, texcoords, intensity, curvature), bounding box,\n    centroid, and point cloud identification.\n\n    Payment via x402 (USDC on Base) or card via MPP (Stripe). See format_auto\n    for payment flow details. Privacy policy: https://caliper.fit/privacy","inputSchema":{"type":"object","properties":{"file_url":{"type":"string","description":"HTTP/HTTPS URL of the geometry file to analyze. Preferred for large files (over 200KB). The file format is detected from the URL path extension, so the filename parameter is not needed when using file_url. Max 100MB. Default: null (omit if providing file_b64 instead)."},"file_b64":{"type":"string","description":"Base64-encoded file content. Max 200KB decoded. Use file_url for larger files to avoid consuming model context window budget. Default: null (omit if providing file_url instead)."},"filename":{"type":"string","description":"Original filename with extension (e.g. 'model.stl'). Required for format detection when using file_b64. Not needed when using file_url (format is detected from the URL path). Default: null."},"payment":{"type":"string","description":"Payment proof as a JSON string. Set this when retrying after a payment_required response. For x402: must contain 'transaction' (on-chain tx hash), 'network', and 'priceToken' from the payment_required response. For MPP: must contain 'challenge' and 'payload' from the org.paymentauth/credential flow. Default: null (omit on first call; set only when retrying with payment)."}}}},{"name":"format_pcd","description":"Extract metadata from a PCD point cloud file.\n\n    Returns point count, field definitions, data format, organization,\n    viewpoint, feature flags (RGB, intensity, normals, curvature),\n    bounding box, centroid, and point density estimate.\n\n    Payment via x402 (USDC on Base) or card via MPP (Stripe). See format_auto\n    for payment flow details. Privacy policy: https://caliper.fit/privacy","inputSchema":{"type":"object","properties":{"file_url":{"type":"string","description":"HTTP/HTTPS URL of the geometry file to analyze. Preferred for large files (over 200KB). The file format is detected from the URL path extension, so the filename parameter is not needed when using file_url. Max 100MB. Default: null (omit if providing file_b64 instead)."},"file_b64":{"type":"string","description":"Base64-encoded file content. Max 200KB decoded. Use file_url for larger files to avoid consuming model context window budget. Default: null (omit if providing file_url instead)."},"filename":{"type":"string","description":"Original filename with extension (e.g. 'model.stl'). Required for format detection when using file_b64. Not needed when using file_url (format is detected from the URL path). Default: null."},"payment":{"type":"string","description":"Payment proof as a JSON string. Set this when retrying after a payment_required response. For x402: must contain 'transaction' (on-chain tx hash), 'network', and 'priceToken' from the payment_required response. For MPP: must contain 'challenge' and 'payload' from the org.paymentauth/credential flow. Default: null (omit on first call; set only when retrying with payment)."}}}},{"name":"format_las","description":"Extract metadata from a LAS or LAZ point cloud file.\n\n    Returns LAS version, point format, point count, scale factors,\n    offsets, bounding box, classification counts, feature flags\n    (RGB, intensity, GPS time, waveform), and VLR information.\n\n    Payment via x402 (USDC on Base) or card via MPP (Stripe). See format_auto\n    for payment flow details. Privacy policy: https://caliper.fit/privacy","inputSchema":{"type":"object","properties":{"file_url":{"type":"string","description":"HTTP/HTTPS URL of the geometry file to analyze. Preferred for large files (over 200KB). The file format is detected from the URL path extension, so the filename parameter is not needed when using file_url. Max 100MB. Default: null (omit if providing file_b64 instead)."},"file_b64":{"type":"string","description":"Base64-encoded file content. Max 200KB decoded. Use file_url for larger files to avoid consuming model context window budget. Default: null (omit if providing file_url instead)."},"filename":{"type":"string","description":"Original filename with extension (e.g. 'model.stl'). Required for format detection when using file_b64. Not needed when using file_url (format is detected from the URL path). Default: null."},"payment":{"type":"string","description":"Payment proof as a JSON string. Set this when retrying after a payment_required response. For x402: must contain 'transaction' (on-chain tx hash), 'network', and 'priceToken' from the payment_required response. For MPP: must contain 'challenge' and 'payload' from the org.paymentauth/credential flow. Default: null (omit on first call; set only when retrying with payment)."}}}},{"name":"format_gltf","description":"Extract metadata from a glTF or GLB file.\n\n    Returns asset info, scene graph structure, mesh/material/texture\n    counts, vertex and index totals, feature flags (normals, tangents,\n    texcoords, colors, joints), primitive modes, and extensions.\n\n    Payment via x402 (USDC on Base) or card via MPP (Stripe). See format_auto\n    for payment flow details. Privacy policy: https://caliper.fit/privacy","inputSchema":{"type":"object","properties":{"file_url":{"type":"string","description":"HTTP/HTTPS URL of the geometry file to analyze. Preferred for large files (over 200KB). The file format is detected from the URL path extension, so the filename parameter is not needed when using file_url. Max 100MB. Default: null (omit if providing file_b64 instead)."},"file_b64":{"type":"string","description":"Base64-encoded file content. Max 200KB decoded. Use file_url for larger files to avoid consuming model context window budget. Default: null (omit if providing file_url instead)."},"filename":{"type":"string","description":"Original filename with extension (e.g. 'model.stl'). Required for format detection when using file_b64. Not needed when using file_url (format is detected from the URL path). Default: null."},"payment":{"type":"string","description":"Payment proof as a JSON string. Set this when retrying after a payment_required response. For x402: must contain 'transaction' (on-chain tx hash), 'network', and 'priceToken' from the payment_required response. For MPP: must contain 'challenge' and 'payload' from the org.paymentauth/credential flow. Default: null (omit on first call; set only when retrying with payment)."}}}},{"name":"format_batch","description":"Analyze multiple geometry files in a single batch request.\n\n    Submit up to 10 files, receive a single quote, pay once, and get\n    structured metadata for all files. Supports mixed formats. Read-only\n    analysis — does not modify, convert, or repair files.\n\n    Payment is required via x402 (USDC on Base) or card via MPP (Stripe). If no payment is provided,\n    the response includes the total price and per-file breakdown. Retry\n    with the payment argument containing \"transaction\", \"network\", and\n    \"priceToken\".\n\n    Partial success: if some files fail processing, you still receive\n    results for the files that succeeded.\n    Privacy policy: https://caliper.fit/privacy","inputSchema":{"type":"object","properties":{"files":{"type":"string","description":"JSON array of file descriptors. Each object has optional keys: \"file_url\" (HTTP/S URL), \"file_b64\" (base64 string), \"filename\" (for format detection). Provide either file_url or file_b64 per file. Max 10 files per batch."},"payment":{"type":"string","description":"Payment proof as a JSON string. Set this when retrying after a payment_required response. For x402: must contain 'transaction' (on-chain tx hash), 'network', and 'priceToken' from the payment_required response. For MPP: must contain 'challenge' and 'payload' from the org.paymentauth/credential flow. Default: null (omit on first call; set only when retrying with payment)."}},"required":["files"]}}],"supported_formats":["GLB","GLTF","LAS","LAZ","OBJ","PCD","PLY","STL"],"planned_formats":["IGES","STEP"],"server_url":"https://caliper.fit"}