fl_statute
Pack: florida-code · Connect: https://pipeworx.io/mcp (see Connect below for a single-pack URL)
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/fl_statute for the schema, then POST the same URL with its arguments for the data.
Get the FULL TEXT of a section of the Florida Statutes — Florida state law — by citation. “Florida Statute 784.011” is section 784.011 (assault). Returns the statutory text, its catchline and its amendment history. Keyless. Use for “what does Florida Statute 316.193 say”, “text of Fla. Stat. 768.28”, or to check a Florida statute a case relies on.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
section | string | yes | Section as cited, e.g. “784.011” or “316.193”. The chapter is the part before the dot. |
Example call
Arguments
{
"section": "784.011"
}
curl
curl -X POST https://gateway.pipeworx.io/florida-code/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fl_statute","arguments":{"section":"784.011"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fl_statute', {
"section": "784.011"
});
More examples
{
"section": "316.193"
}
Connect
Add this to your MCP client config — every tool in the catalog, including this one — or use one-click install buttons:
{
"mcpServers": {
"pipeworx": {
"url": "https://pipeworx.io/mcp"
}
}
}
Connect to just the florida-code pack
{
"mcpServers": {
"florida-code": {
"url": "https://gateway.pipeworx.io/florida-code/mcp"
}
}
}
See Getting Started for client-specific install steps.