MAGENT

LIVE

CURB-65

Compute the CURB-65 community-acquired pneumonia severity score from age and discrete flags.

LIVE $0.005 USDC GET /api/calc/curb65

Markdown: /docs/curb65.md · Canonical: https://magentlab.com/docs/curb65

Not a medical device. Not a diagnosis, dose, or listing recommendation.

What it computes

Compute the CURB-65 community-acquired pneumonia severity score from age and discrete flags.

When to use

When an agent needs the published CURB-65 total and must not invent points from a chart narrative.

When not to use

  • Not a treatment recommendation and not a site-of-care decision.
  • urea_high is a boolean flag. magent does not convert BUN mg/dL to urea mmol/L.

Formula

CURB-65 = confusion + urea_high + respiratory_rate_ge_30 + low_blood_pressure + age_ge_65; max 5

Citation

Title
Defining community acquired pneumonia severity on presentation to hospital: an international derivation and validation study
Authors
Lim WS, van der Eerden MM, Laing R, et al.
Source
Thorax. 2003;58(5):377-382
DOI
10.1136/thorax.58.5.377

Worked example

Age 70, confusion, urea high

Given: age=70confusion=truelow_blood_pressure=falserespiratory_rate_ge_30=falseurea_high=true

  1. Confusion → 1; urea_high → 1; age ≥65 → 1
  2. Score = 3

Try

Opens the live endpoint. Unpaid browser requests show the paywall; agents should send Accept: application/json.

/api/calc/curb65?age=70&confusion=true&urea_high=true&respiratory_rate_ge_30=false&low_blood_pressure=false

Full URL: https://api.magentlab.com/api/calc/curb65?age=70&confusion=true&urea_high=true&respiratory_rate_ge_30=false&low_blood_pressure=false

x402 V2 curl

Expect HTTP 402 and a PAYMENT-REQUIRED header until you retry with PAYMENT-SIGNATURE. Incomplete query params return HTTP 400 before any quote or charge.

curl -i -H "Accept: application/json" "https://api.magentlab.com/api/calc/curb65?age=70&confusion=true&urea_high=true&respiratory_rate_ge_30=false&low_blood_pressure=false"

Cursor mcp.json

Intended config for @magent/mcp. This is not npm @x402/fetch (a payment fetch wrapper).

{
  "mcpServers": {
    "magent": {
      "args": [
        "-y",
        "@magent/mcp"
      ],
      "command": "npx",
      "env": {
        "X402_PRIVATE_KEY": "0xYOUR_SPENDING_KEY"
      }
    }
  }
}

Parameters

Name Type Required Description
age integer required Age in years (18-120). Age ≥65 scores 1.
confusion boolean required New confusion (C). true or false.
urea_high boolean required Urea >7 mmol/L (U). Pass the published cutoff as a flag; magent does not convert BUN.
respiratory_rate_ge_30 boolean required Respiratory rate ≥30/min (R). true or false.
low_blood_pressure boolean required SBP <90 mmHg or DBP ≤60 mmHg (B). true or false.

Response

Field Type Description
formula string curb65
formula_expression string Exact expression used
score integer Total points 0-5
max_score integer Always 5
age_years integer Age used for the 65 criterion
components array Per-factor points
citation object Thorax 2003 citation
disclaimer string Not-a-device notice

Example JSON

Machine form of the same example. Frozen fixture. Not a live lookup.

{
  "components": [
    {
      "factor": "confusion",
      "points": 1,
      "present": true
    },
    {
      "factor": "urea_high",
      "points": 1,
      "present": true
    },
    {
      "factor": "respiratory_rate_ge_30",
      "points": 0,
      "present": false
    },
    {
      "factor": "low_blood_pressure",
      "points": 0,
      "present": false
    },
    {
      "value": 70,
      "factor": "age_ge_65",
      "points": 1,
      "present": true
    }
  ],
  "disclaimer": "Not a medical device. Deterministic published-formula or coded-ontology output for autonomous agents. A licensed clinician remains responsible for patient care and billing submissions.",
  "citation": {
    "authors": "Lim WS, van der Eerden MM, Laing R, et al.",
    "doi": "10.1136/thorax.58.5.377",
    "id": "lim-2003",
    "source": "Thorax. 2003;58(5):377-382",
    "title": "Defining community acquired pneumonia severity on presentation to hospital: an international derivation and validation study"
  },
  "formula": "curb65",
  "formula_expression": "CURB-65 = confusion + urea_high + respiratory_rate_ge_30 + low_blood_pressure + age_ge_65; max 5",
  "age_years": 70,
  "max_score": 5,
  "score": 3
}

Errors

HTTP Code When
400 invalid_age age must be an integer from 18 to 120 Returned before settlement; you are not charged.
400 invalid_flag boolean clinical flags must be true or false Returned before settlement; you are not charged.
402 payment_required Missing or invalid PAYMENT-SIGNATURE; decode the PAYMENT-REQUIRED header
409 payment_in_progress The same authorization nonce is already being settled; retry shortly
429 rate_limited Too many requests from this client
503 settlement_uncertain Settlement is unconfirmed; retry with the same PAYMENT-SIGNATURE
503 facilitator_unavailable Payment facilitator unavailable
503 facilitator_misconfigured Payment facilitator is not configured
503 facilitator_unauthorized Payment facilitator rejected credentials
503 ledger_unavailable Payment ledger unavailable
503 payment_unavailable Payment processing unavailable

Related tools

  • Wells PE — Compute the Wells pulmonary-embolism probability score and return three-tier and two-tier bands.
  • Wells DVT — Compute the Wells deep-vein thrombosis probability score and return three-tier and two-tier bands.

Also searched as

  • CURB 65
  • CURB65 score
  • Lim pneumonia score
  • CAP severity

Payment

Required query parameters must be present and valid. Invalid params return HTTP 400 JSON before settlement. magent does not charge. Fix the params, then request a new 402 quote for that complete URL. Catalog misses (empty matches, found=false) are valid paid 200s. Unpaid valid requests return HTTP 402 with a base64 PAYMENT-REQUIRED header. Retry the same URL with PAYMENT-SIGNATURE. Settlement completes before the tool runs. Full handshake and shared payment errors: Payments.

Guarantees

  • Invalid query parameters return HTTP 400 before settlement. You are not charged.
  • Settlement finishes before the tool executes. Uncertain settlement fails closed (HTTP 503).
  • Execution is timeout-bounded and concurrency-capped.
  • Calculator inputs are not persisted. Request logs store path without query.