We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/stevengonsalvez/promptregistry-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
rules-processor.json•1.45 KiB
{
"id": "rules-processor",
"description": "Processes files against a registry of rules (specified by path or direct content), dynamically fetching rule details and applying them.",
"contentFile": "rules-processor.md",
"tags": [
"rules-engine",
"linting",
"validation",
"automation",
"code-analysis",
"static-analysis"
],
"variables": {
"rules_registry_path": {
"description": "The file system path to the rules registry JSON file.",
"required": true
},
"rules_registry_content": {
"description": "Optional. The direct JSON string content of the rules registry. If provided, this will be used instead of reading from rules_registry_path.",
"required": false
},
"file_path_or_description": {
"description": "The path to the file(s) to be processed, a glob pattern, or a textual description of the files/content to analyze.",
"required": true
},
"user_goal": {
"description": "An optional goal or specific focus for the rule processing, provided by the user (e.g., 'focus on security rules', 'check for deployment readiness').",
"required": false
}
},
"metadata": {
"version": "1.1",
"requires_tools": [
"get_rule_content",
"read_file_content (potentially for registry and target files)"
]
}
}