fl_statute

Pack: florida-code · Endpoint: https://gateway.pipeworx.io/florida-code/mcp

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

NameTypeRequiredDescription
sectionstringyesSection 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, or use one-click install buttons:

{
  "mcpServers": {
    "florida-code": {
      "url": "https://gateway.pipeworx.io/florida-code/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 12, 2026