Developer & AI Agent Documentation
Agent-Access & API Documentation
The California Slip & Fall Evidence Checker exposes the same educational decision-support engine through four channels — the Human web UI, an in-page Browser WebMCP tool, a public REST API, and a Remote MCP server. All channels run one canonical engine and return identical results.
Legal safeguards (mandatory in every response): Informational / educational use only — this is not legal advice. The tool never assesses liability or fault, never determines whether a legal claim is valid, never calculates case value, never estimates the probability of winning, and never guarantees any outcome. Use of the tool does not create an attorney-client relationship.
Endpoints
/api/v1/check-slip-fall-evidencePublic REST API. Send a JSON object of answers, receive the educational checklist.
/api/mcpRemote MCP server (JSON-RPC 2.0): initialize, tools/list, tools/call.
/.well-known/mcp.jsonMCP discovery document.
/openapi.jsonOpenAPI 3.1 specification for the REST API.
/capability-manifest.jsonMachine-readable capability manifest listing every access channel.
document.modelContext.registerTool()Page-level Browser WebMCP tool check_slip_fall_evidence, registered on the Evidence Checker page with a REST fallback.
REST example
curl -X POST https://caslipandfall.com/api/v1/check-slip-fall-evidence \
-H "Content-Type: application/json" \
-d '{
"fallType": "slip_wet_floor",
"publicPrivate": "private",
"timing": "within_24h",
"surveillanceVideo": "yes_cameras",
"injurySymptoms": ["fracture"]
}'Remote MCP example
curl -X POST https://caslipandfall.com/api/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "check_slip_fall_evidence",
"arguments": { "timing": "within_24h", "surveillanceVideo": "yes_cameras" }
}
}'Tool name
Across the Browser WebMCP, REST, and Remote MCP channels the canonical tool ischeck_slip_fall_evidence. A legacy Remote MCP endpoint remains available at/api/webmcpfor existing integrations.
Questions about integrating with this tool?
Call (949) 404-4826JSM Injury FirmInformational only — not legal advice. No attorney-client relationship is created by using this tool or its APIs.
