Validation
Parse Title/Chapter/Article/Section/Subsection/Appendix municipal code citations, generate Bluebook Rule 12.9.2 legal citations, detect renumbering after recent ordinances (gaps, duplicates, out-of-order sections), and optionally live-verify hosted deep links.
Call this tool from your code in three languages.
curl -X POST 'http://127.0.0.1:3003/en/api/tools/us-state-county-municode-code-of-ordinances-section-subsection-citation-link-checker' \
-H 'Content-Type: application/json' \
-d '{"citations":"Sec. 2-12 — definitions\n§ 2-14 — noise limits\nSec. 2-14.5(b)(2) — amended by Ord. 2025-41\n§ 2-16 — appeals\nSec. 6-12 — permit required\n§ 6-11 — fee schedule\nChapter 3, Article I, Sec. 3-4 — signage\n§ 3-4 — signage (duplicate)\nnot a citation at all","cityState":"Gainesville, FL","codeName":"Code of Ordinances","citationYear":2026,"publisher":"municode","deepLinks":"","verifyLinks":false}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST http://127.0.0.1:3003/en/api/tools/us-state-county-municode-code-of-ordinances-section-subsection-citation-link-checker| Name | Type | Required | Description |
|---|---|---|---|
| citations | textarea | Yes | — |
| cityState | text | No | — |
| codeName | text | No | — |
| citationYear | number | No | — |
| publisher | select | No | — |
| deepLinks | textarea | No | — |
| verifyLinks | checkbox | No | — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-us-state-county-municode-code-of-ordinances-section-subsection-citation-link-checker": {
"name": "us-state-county-municode-code-of-ordinances-section-subsection-citation-link-checker",
"description": "Parse Title/Chapter/Article/Section/Subsection/Appendix municipal code citations, generate Bluebook Rule 12.9.2 legal citations, detect renumbering after recent ordinances (gaps, duplicates, out-of-order sections), and optionally live-verify hosted deep links.",
"baseUrl": "http://127.0.0.1:3003/mcp/sse?toolId=us-state-county-municode-code-of-ordinances-section-subsection-citation-link-checker",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "us-state-county-municode-code-of-ordinances-section-subsection-citation-link-checker",
"arguments": {
"citations": "Sec. 2-12 — definitions\n§ 2-14 — noise limits\nSec. 2-14.5(b)(2) — amended by Ord. 2025-41\n§ 2-16 — appeals\nSec. 6-12 — permit required\n§ 6-11 — fee schedule\nChapter 3, Article I, Sec. 3-4 — signage\n§ 3-4 — signage (duplicate)\nnot a citation at all",
"cityState": "Gainesville, FL",
"codeName": "Code of Ordinances",
"citationYear": 2026,
"publisher": "municode",
"deepLinks": "",
"verifyLinks": false
}
}
}Questions or issues? Contact [email protected]