# Cincinnati Prehospital Stroke Severity Scale (CP-SSS)

CP-SSS

Status: LIVE
Price: $0.005 USDC
`GET /api/calc/cpsss`
HTML: https://magentlab.com/docs/cpsss
Markdown: https://magentlab.com/docs/cpsss.md

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

## What it computes

Sum Katz 2015 Cincinnati Prehospital Stroke Severity Scale (CP-SSS) points from caller-assigned conjugate gaze deviation, abnormal level of consciousness, and arm weakness, and return whether the total suggests severe stroke (score ≥2).

## When to use

When an agent has caller-assigned Katz 2015 CP-SSS items and needs the published 0-4 total and score ≥2 severe-stroke flag, not the 3-item Cincinnati Prehospital Stroke Scale facial/arm/speech screen, NIHSS, or a tPA decision.

## When not to use

- Not a medical device. magent does not examine the patient. Conjugate gaze deviation, level of consciousness, and arm weakness are caller-assigned Katz 2015 findings.
- This is the Cincinnati Prehospital Stroke Severity Scale (CP-SSS), not the 3-item Cincinnati Prehospital Stroke Scale (CPSS) facial droop, arm drift, and speech screen.
- Not NIHSS and not a tPA, thrombolysis, or transfer order. severe_stroke_suggested is true iff score ≥ 2 (this paper's cutoff for NIHSS ≥15 / LVO prediction). Sensitivity, PPV, and other operating-point statistics are not returned.

## Formula

```
CP-SSS = gaze_deviation (2 if present, else 0) + loc_abnormal (1 if cannot answer age or current month, or cannot follow commands) + arm_weakness (1 if cannot hold arm 10 s); Katz 2015; max 4; severe_stroke_suggested if score ≥ 2
```

## Citation

[Design and validation of a prehospital scale to predict stroke severity: Cincinnati Prehospital Stroke Severity Scale](https://doi.org/10.1161/STROKEAHA.115.008804)
Katz BS, McMullan JT, Sucharew H, Adeoye O, Broderick JP
Stroke. 2015;46(6):1508-1512
DOI: [10.1161/STROKEAHA.115.008804](https://doi.org/10.1161/STROKEAHA.115.008804)

## Worked example

### Gaze, LOC, and arm all absent

Given: `arm_weakness=false, gaze_deviation=0, loc_abnormal=false`

1. gaze_deviation 0 + loc_abnormal 0 + arm_weakness 0
2. Score = 0 (max 4); severe_stroke_suggested false (cutoff is ≥2)


### All items at published maximum

Given: `arm_weakness=true, gaze_deviation=2, loc_abnormal=true`

1. gaze_deviation 2 + loc_abnormal 1 + arm_weakness 1
2. Score = 4 (max 4); severe_stroke_suggested true


## Also searched as

- Cincinnati Prehospital Stroke Severity Scale
- CP-SSS
- Katz CP-SSS
- Cincinnati Prehospital Stroke Severity
- Katz 2015 stroke scale
- prehospital stroke severity scale
- CPSSS

## Parameters

- `gaze_deviation` (integer, required): Caller-assigned Katz 2015 conjugate gaze deviation. Integer 0 absent or 2 present (not 1). magent does not examine the patient.
- `loc_abnormal` (boolean, required): Caller-assigned Katz 2015 incorrect level of consciousness (cannot answer age or current month correctly, or cannot follow commands). true if abnormal, false if normal. magent does not examine the patient.
- `arm_weakness` (boolean, required): Caller-assigned Katz 2015 arm weakness: cannot hold arm up for 10 s (arm falls or no effort against gravity). true if present. magent does not examine the patient.

## Bulk (POST)

POST the same path with a JSON items array. The first item is the GET unit; each additional item is $0.002. Invalid items return HTTP 400 before settlement.

Method: `POST /api/calc/cpsss`
Max items: 25
Price: unit_amount + extra_item_amount * (n - 1) (unit 5000 atomic, extra 2000 atomic)
Status: PREVIEW

- 1 to 25 items. Each item uses the same keys as the GET query parameters.
- POST of 1 item costs the same as GET. Lists longer than 25: chunk into multiple POSTs. Extra items still execute; do not pad dummy rows.
- The first invalid item fails the whole request (index in the 400 JSON). You are not charged.
- HTTP 200 is {count, path, items}. Each items[i] is the GET 200 body for that row.
- Catalog misses (empty matches, found=false) stay paid 200s inside that slot.
- x402 resource URL is this path plus n and body_sha256. Browsers that prefer text/html get the same paywall as GET; Pay retries POST with the same items.

Example request:

```json
{
  "items": [
    {
      "arm_weakness": "false",
      "gaze_deviation": "0",
      "loc_abnormal": "false"
    },
    {
      "arm_weakness": "false",
      "gaze_deviation": "0",
      "loc_abnormal": "false"
    }
  ]
}
```

Human paywall (two-item fixture): https://api.magentlab.com/paywall/bulk/cpsss

Example 200:

```json
{
  "count": 2,
  "path": "/api/calc/cpsss",
  "items": [
    {
      "components": [
        {
          "value": 0,
          "factor": "gaze_deviation",
          "points": 0,
          "present": false
        },
        {
          "factor": "loc_abnormal",
          "points": 0,
          "present": false
        },
        {
          "factor": "arm_weakness",
          "points": 0,
          "present": false
        }
      ],
      "disclaimer": "Not a medical device. Deterministic published-formula or published-code output for autonomous agents. A licensed clinician remains responsible for patient care and billing submissions.",
      "citation": {
        "authors": "Katz BS, McMullan JT, Sucharew H, Adeoye O, Broderick JP",
        "doi": "10.1161/STROKEAHA.115.008804",
        "id": "katz-2015",
        "pmid": "25899242",
        "source": "Stroke. 2015;46(6):1508-1512",
        "title": "Design and validation of a prehospital scale to predict stroke severity: Cincinnati Prehospital Stroke Severity Scale"
      },
      "formula": "cpsss",
      "formula_expression": "CP-SSS = gaze_deviation (2 if present, else 0) + loc_abnormal (1 if cannot answer age or current month, or cannot follow commands) + arm_weakness (1 if cannot hold arm 10 s); Katz 2015; max 4; severe_stroke_suggested if score ≥ 2",
      "max_score": 4,
      "score": 0,
      "arm_weakness": false,
      "gaze_deviation": 0,
      "loc_abnormal": false,
      "severe_stroke_suggested": false
    },
    {
      "components": [
        {
          "value": 0,
          "factor": "gaze_deviation",
          "points": 0,
          "present": false
        },
        {
          "factor": "loc_abnormal",
          "points": 0,
          "present": false
        },
        {
          "factor": "arm_weakness",
          "points": 0,
          "present": false
        }
      ],
      "disclaimer": "Not a medical device. Deterministic published-formula or published-code output for autonomous agents. A licensed clinician remains responsible for patient care and billing submissions.",
      "citation": {
        "authors": "Katz BS, McMullan JT, Sucharew H, Adeoye O, Broderick JP",
        "doi": "10.1161/STROKEAHA.115.008804",
        "id": "katz-2015",
        "pmid": "25899242",
        "source": "Stroke. 2015;46(6):1508-1512",
        "title": "Design and validation of a prehospital scale to predict stroke severity: Cincinnati Prehospital Stroke Severity Scale"
      },
      "formula": "cpsss",
      "formula_expression": "CP-SSS = gaze_deviation (2 if present, else 0) + loc_abnormal (1 if cannot answer age or current month, or cannot follow commands) + arm_weakness (1 if cannot hold arm 10 s); Katz 2015; max 4; severe_stroke_suggested if score ≥ 2",
      "max_score": 4,
      "score": 0,
      "arm_weakness": false,
      "gaze_deviation": 0,
      "loc_abnormal": false,
      "severe_stroke_suggested": false
    }
  ]
}
```

## Response fields

- `formula` (string): cpsss
- `formula_expression` (string): Exact expression used
- `score` (integer): CP-SSS points 0-4
- `max_score` (integer): 4
- `severe_stroke_suggested` (boolean): true iff score ≥ 2 (Katz 2015 cutoff). Not NIHSS and not a tPA decision. Sensitivity and PPV are not returned.
- `gaze_deviation` (integer): Caller-assigned conjugate gaze deviation 0 or 2
- `loc_abnormal` (boolean): Caller-assigned incorrect level of consciousness
- `arm_weakness` (boolean): Caller-assigned inability to hold arm up for 10 s
- `components` (array): Per-item Katz 2015 points
- `citation` (object): Katz et al. Stroke 2015 citation
- `disclaimer` (string): Not-a-device notice

## Example JSON

Frozen fixture. Not a live lookup.

```json
{
  "components": [
    {
      "value": 0,
      "factor": "gaze_deviation",
      "points": 0,
      "present": false
    },
    {
      "factor": "loc_abnormal",
      "points": 0,
      "present": false
    },
    {
      "factor": "arm_weakness",
      "points": 0,
      "present": false
    }
  ],
  "disclaimer": "Not a medical device. Deterministic published-formula or published-code output for autonomous agents. A licensed clinician remains responsible for patient care and billing submissions.",
  "citation": {
    "authors": "Katz BS, McMullan JT, Sucharew H, Adeoye O, Broderick JP",
    "doi": "10.1161/STROKEAHA.115.008804",
    "id": "katz-2015",
    "pmid": "25899242",
    "source": "Stroke. 2015;46(6):1508-1512",
    "title": "Design and validation of a prehospital scale to predict stroke severity: Cincinnati Prehospital Stroke Severity Scale"
  },
  "formula": "cpsss",
  "formula_expression": "CP-SSS = gaze_deviation (2 if present, else 0) + loc_abnormal (1 if cannot answer age or current month, or cannot follow commands) + arm_weakness (1 if cannot hold arm 10 s); Katz 2015; max 4; severe_stroke_suggested if score ≥ 2",
  "max_score": 4,
  "score": 0,
  "arm_weakness": false,
  "gaze_deviation": 0,
  "loc_abnormal": false,
  "severe_stroke_suggested": false
}
```

## Errors

- HTTP 400 `invalid_flag`: boolean clinical flags must be true or false Returned before settlement; you are not charged.
- HTTP 400 `invalid_cpsss`: gaze_deviation 0 or 2; loc_abnormal and arm_weakness true or false (Katz 2015). Returned before settlement; you are not charged.
- HTTP 400 `invalid_items`: POST body must be a JSON object with only an items array Returned before settlement; you are not charged.
- HTTP 400 `invalid_item_count`: items must be an array of 1 to 25 objects Returned before settlement; you are not charged.
- HTTP 400 `invalid_item`: each items entry must be a JSON object Returned before settlement; you are not charged.

Shared HTTP 402 and 503: https://magentlab.com/docs/payments

## Related tools

- [LAMS](https://magentlab.com/docs/lams) — Sum Llanes 2004 LAMS points from caller-assigned facial droop, arm drift, and grip (LAPSS motor items).
- [RACE scale](https://magentlab.com/docs/race) — Sum Pérez de la Ossa 2014 Rapid Arterial oCclusion Evaluation (RACE) scale points from caller-assigned facial palsy, arm motor, leg motor, head and gaze deviation, and cortical signs (aphasia if right hemiparesis, agnosia if left) and return whether the total suggests large arterial occlusion (score ≥5).

## Payment

Unpaid requests return HTTP 402 even if query parameters or POST items are missing or invalid, so CDP and agents can index the path. After a PAYMENT-SIGNATURE, 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.

- GET the tool with Accept: application/json (do not send Accept: text/html unless you want the human paywall).
- HTTP 402 means you have not paid. Decode the base64 PAYMENT-REQUIRED header. HTTP 503 is not a new quote.
- Sign accepts[0] (exact, EIP-3009) with validBefore = now + maxTimeoutSeconds (600 seconds), or accepts[1] (batch-settlement deposit/voucher) on product GET. Ping and POST {items} stay exact. Magent retries transient facilitator 429/5xx before answering.
- Retry the same URL with PAYMENT-SIGNATURE (base64 JSON of accepted and payload). Magent attaches canonical extensions.bazaar on CDP verify/settle; echoing 402 bazaar is optional.
- Success is HTTP 200 JSON plus PAYMENT-RESPONSE. exact settles before the tool. batch-settlement verifies (and deposit-settles) before the tool and commits the charge after HTTP 2xx. HTTP 503: retry the same PAYMENT-SIGNATURE. Mint a new exact nonce only after a new HTTP 402.

- offered `exact` on eip155:8453: Fixed-price USDC on Base. The buyer authorizes the advertised amount (EIP-3009). magent settles before the tool runs (paymentFlow upfront). extra.assetTransferMethod=eip3009 extra.paymentFlow=upfront.
- offered `batch-settlement` on eip155:8453: Payment-channel vouchers claimed later in batches. Exact stays accepts[0]. Same-path POST {items} is still exact. extra.assetTransferMethod=eip3009 extra.paymentFlow=authorization.

- not offered `upto`: Not offered. Usage-based: buyer authorizes a ceiling, seller settles the actual amount after work. Reserved for a future metered tool. Not for current calculators or code search.

Same-path POST {items} is still scheme exact: one EIP-3009 authorization for GET unit plus $0.002 per extra item. That is not x402 batch-settlement (payment channels / vouchers).

Shared HTTP 402 and 503 table: https://magentlab.com/docs/payments

Stdio MCP (one process per host): https://magentlab.com/docs/mcp

## Guarantees

- HTTP 402 is unpaid, including a missing query. After PAYMENT-SIGNATURE, invalid parameters return HTTP 400 before settlement. You are not charged. HTTP 402 never includes the tool JSON.
- exact: settlement finishes before the tool (paymentFlow upfront). batch-settlement: verify/deposit before the tool; chargedCumulativeAmount commits after HTTP 2xx. Uncertain or failed settlement fails closed (HTTP 503). Retry the same PAYMENT-SIGNATURE.
- HTTP 402 is unpaid only. Do not sign a second authorization because of a 503.
- Execution is timeout-bounded and concurrency-capped.
- Calculator inputs are stored encrypted for allowlisted operators (Magent Console). They are not in public logs, SSH lookups, catalog, or rollups. Request logs store path without query.
