tx_codes
Pack: texas-code · Endpoint: https://gateway.pipeworx.io/texas-code/mcp
List the Texas codes with their subjects — Penal Code is PE, Family Code is FA, Tax Code is TX, and so on. Keyless. Use when you know the subject but not the code abbreviation, before calling tx_statute.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/texas-code/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"tx_codes","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('tx_codes', {});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"texas-code": {
"url": "https://gateway.pipeworx.io/texas-code/mcp"
}
}
}
See Getting Started for client-specific install steps.