md_code_section
Pack: maryland-code · Endpoint: https://gateway.pipeworx.io/maryland-code/mcp
Get the FULL TEXT of a section of the Maryland Code — Maryland state statutes — by citation. “Md. Code, Criminal Law 2-201” is first degree murder. Returns the statutory text. Keyless. Use for “what does Maryland Criminal Law 2-201 say” or to check a Maryland statute a case relies on.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
article | string | yes | Maryland article name, e.g. “Criminal Law”, “Transportation”, “Family Law”. Call md_articles for the list. |
section | string | yes | Section as cited, e.g. “2-201” or “21-902”. |
Example call
Arguments
{
"article": "Criminal Law",
"section": "2-201"
}
curl
curl -X POST https://gateway.pipeworx.io/maryland-code/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"md_code_section","arguments":{"article":"Criminal Law","section":"2-201"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('md_code_section', {
"article": "Criminal Law",
"section": "2-201"
});
More examples
{
"article": "Transportation",
"section": "21-902"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"maryland-code": {
"url": "https://gateway.pipeworx.io/maryland-code/mcp"
}
}
}
See Getting Started for client-specific install steps.