io.sentinelsignal/scoring
Official8 toolsHosted MCP for denial, prior auth, reimbursement, workflow validation, batch scoring, and feedback.
Score healthcare denials, prior authorizations, reimbursements with batch processing and feedback.
Captured live from the server via tools/list.
list_workflows
List supported workflows and current model versions via GET /v1/workflows
No parameters.
get_workflow_schema
Fetch required fields, optional fields, enums, and an example payload for a workflow via GET /v1/workflows/{workflow}/schema
Parameters (1)
- workflowstringrequired
Workflow identifier such as healthcare.denial, healthcare.prior_auth, or healthcare.reimbursement.
validate_workflow_payload
Validate and normalize a workflow payload without consuming a scoring call via POST /v1/workflows/{workflow}/validate
Parameters (2)
- workflowstringrequired
Workflow identifier such as healthcare.denial, healthcare.prior_auth, or healthcare.reimbursement.
- payloadobjectrequired
Workflow payload to validate before scoring.
score_workflow
Score Sentinel healthcare workflows via POST /v1/score
Parameters (3)
- workflowstringrequired
Workflow identifier such as healthcare.denial, healthcare.prior_auth, or healthcare.reimbursement.
- payloadobjectrequired
Structured workflow payload matching Sentinel /v1/score for the selected workflow.
- optionsobject | null
Optional scoring flags such as explanation or threshold controls.
score_batch
Score up to 25 workflow items sequentially in one request via POST /v1/score/batch
Parameters (2)
- itemsarrayrequired
List of scoring items, each containing workflow, payload, and optional options.
- continue_on_errorboolean
When true, later items continue even if an earlier item fails.
get_limits
Retrieve plan limits, trial quota, and upgrade state via GET /v1/limits
No parameters.
get_usage
Retrieve monthly scoring call usage via GET /v1/usage
Parameters (1)
- monthstring
Optional billing month in YYYY-MM format.
submit_feedback
Submit structured claims outcome feedback via POST /v1/feedback
Parameters (1)
- feedbackobjectrequired
Structured feedback payload for a prior Sentinel scoring event.
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"scoring": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.sentinelsignal.io/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.