searchProcedures
Search for administrative procedures using specific keywords on the eRegulations MCP Server. Simplify access to structured data for AI models and user queries.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
keyword | Yes | The keyword or phrase to search for procedures. This will be wrapped in a JSON object with a 'keyword' property when sent to the API. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"keyword": {
"description": "The keyword or phrase to search for procedures. This will be wrapped in a JSON object with a 'keyword' property when sent to the API.",
"type": "string"
}
},
"required": [
"keyword"
],
"type": "object"
}