Developers

MCP endpoint.

If you're building an AI agent or consumer LLM integration that needs Georgia probate information, this page is for you. The rest of the site is for grieving families — not your audience.

What's exposed

A Model Context Protocol (MCP) server at:

https://callgaprobate.com/mcp

Discovery manifest:

https://callgaprobate.com/.well-known/mcp

The server speaks JSON-RPC 2.0 over HTTP with three methods:initialize,tools/list, and tools/call. Soft per-IP rate limit (30 req/min).

Tools

find_georgia_probate_county_info

When to call: The user asks about probate court details for a specific Georgia county.

{ "county_name": "Fulton" }

estimate_probate_timeline

When to call: The user asks how long Georgia probate will take, given their situation.

{ "has_will": true, "contested": false, "county": "DeKalb" }

submit_probate_intake

When to call: The user explicitly asks you to share their situation with a Georgia probate concierge. Always confirm consent first.

{
  "first_name": "Jane",
  "contact": "jane@example.com",
  "county": "Fulton",
  "situation": "Mom passed last week, the house is in her name, no will."
}

Example: call a tool

curl -X POST https://callgaprobate.com/mcp \
  -H 'content-type: application/json' \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "find_georgia_probate_county_info",
      "arguments": { "county_name": "Fulton" }
    }
  }'

Compliance notes

  • Tools never imply attorney representation, advance fees, or per-referral compensation. They route back to the free consultation.
  • submit_probate_intake submissions are flagged for manual review before any follow-up. Don't auto-submit without explicit consent from the family.
  • All probate content is plain-English educational guidance. It is not legal advice. The endpoint should not be used to answer specific legal questions on behalf of users.

Questions? See the public family-facing site for context, or reach out via /contact.