Harris County

live News

Harris County (TX) District Clerk — INCUBATOR, deliberately not wired.

4 tools
0ms auth
free tier 50 calls/day

Tools

harris_civil_search_party

Find Harris County (Houston, TX) state civil court cases involving a named party — the "is this company being sued, and by whom" question that federal docket sources (court-listener, PACER) structural

No parameters required.

Try it
harris_civil_case

Full detail for one Harris County (TX) civil case by its cause number (e.g. "202662585"), including every party on the case — plaintiffs, defendants, intervenors — with their addresses, which the case

No parameters required.

Try it
harris_civil_recent_filings

Recently filed Harris County (Houston, TX) civil cases, newest first — the "what is being filed in Houston right now" view. Optionally filter by case_type (e.g. "Motor Vehicle", "Debt", "Contract") or

No parameters required.

Try it
harris_civil_coverage

What this Harris County docket corpus actually covers — case and party row counts, the filing-date range present, and the clerk files it was last built from. Call this before concluding anything from

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/harris-county/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/harris-county/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"harris_civil_search_party","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("harris_civil_search_party", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("harris county (tx) district clerk — incubator, deliberately not wired");