{
    "openrpc": "1.2.6",
    "info": {
        "title": "Placiva Read-Only Planning MCP",
        "version": "2026-06-11",
        "description": "Public read-only tool schema for senior home safety planning information. No lead routing, provider contact, payment, or account actions are implemented."
    },
    "servers": [
        {
            "name": "Placiva public MCP endpoint",
            "url": "https://placiva.com/api/mcp"
        }
    ],
    "methods": [
        {
            "name": "tools/list",
            "description": "List implemented read-only public tools.",
            "params": [],
            "result": {
                "name": "tools",
                "schema": {
                    "type": "object",
                    "required": [
                        "tools"
                    ],
                    "properties": {
                        "tools": {
                            "type": "array",
                            "items": {
                                "type": "object",
                                "required": [
                                    "name",
                                    "description"
                                ],
                                "properties": {
                                    "name": {
                                        "type": "string"
                                    },
                                    "description": {
                                        "type": "string"
                                    }
                                }
                            }
                        }
                    }
                }
            }
        },
        {
            "name": "tools/call",
            "description": "Call one of the implemented read-only tools.",
            "params": [
                {
                    "name": "params",
                    "schema": {
                        "type": "object",
                        "required": [
                            "name"
                        ],
                        "properties": {
                            "name": {
                                "type": "string",
                                "enum": [
                                    "get_site_overview",
                                    "get_evidence_sources",
                                    "get_tool_assumptions"
                                ]
                            },
                            "arguments": {
                                "type": "object",
                                "additionalProperties": false
                            }
                        },
                        "additionalProperties": false
                    }
                }
            ],
            "result": {
                "name": "content",
                "schema": {
                    "type": "object",
                    "required": [
                        "content"
                    ],
                    "properties": {
                        "content": {
                            "type": "array",
                            "items": {
                                "type": "object",
                                "required": [
                                    "type",
                                    "text"
                                ],
                                "properties": {
                                    "type": {
                                        "type": "string",
                                        "enum": [
                                            "text"
                                        ]
                                    },
                                    "text": {
                                        "type": "string"
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    ],
    "x_placiva_policy": {
        "readonly": true,
        "write_actions_enabled": false,
        "private_data_access": false,
        "implemented_tools": [
            "get_site_overview",
            "get_evidence_sources",
            "get_tool_assumptions"
        ],
        "forbidden_actions": [
            "submit_personal_data",
            "route_lead",
            "contact_provider",
            "process_payment",
            "create_account"
        ],
        "policies": [
            "https://placiva.com/privacy-policy/",
            "https://placiva.com/terms/",
            "https://placiva.com/legal/"
        ]
    }
}