nv_revised_statute
Pack: nevada-code · Endpoint: https://gateway.pipeworx.io/nevada-code/mcp
Get the FULL TEXT of a section of the Nevada Revised Statutes — Nevada state law — by citation. “NRS 200.010” defines murder. Returns the statutory text. Keyless. Use for “what does NRS 484C.110 say” or to check a Nevada statute a case relies on.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
section | string | yes | Section as cited, e.g. “200.010” (murder) or “484C.110” (DUI). Chapter is the part before the dot. |
Example call
Arguments
{
"section": "200.010"
}
curl
curl -X POST https://gateway.pipeworx.io/nevada-code/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"nv_revised_statute","arguments":{"section":"200.010"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('nv_revised_statute', {
"section": "200.010"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"nevada-code": {
"url": "https://gateway.pipeworx.io/nevada-code/mcp"
}
}
}
See Getting Started for client-specific install steps.