n8daniels/RulesetMCP
Weight-On-Wheels for AI: MCP server that keeps every agent grounded in your project's rules
Platform-specific configuration:
{
"mcpServers": {
"RulesetMCP": {
"command": "npx",
"args": [
"-y",
"RulesetMCP"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
> Weight-On-Wheels for AI: Keep every agent grounded in your project's rules.
RulesetMCP is a Model Context Protocol (MCP) server that gives AI agents a project-aware rulebook. Instead of explaining your coding standards, SQL conventions, or process guidelines every time you open a new AI session, you define them once in version-controlled files. RulesetMCP reads those files and exposes tools for listing, summarizing, and applying rules to specific tasks and snippets.
Right now you probably:
RulesetMCP acts like a "Weight-On-Wheels" switch for AI assistants: once your rules are loaded, every action is grounded in them. This keeps your rewrites, refactors, and new features aligned with the architecture and process decisions you've already made.
list_projectsget_rules (filter by area, tags, severity)summarize_rules_for_taskvalidate_snippetreload_rulesnpm install -g rulesetmcpOr clone and build locally:
git clone https://github.com/n8daniels/RulesetMCP.git
cd RulesetMCP
npm install
npm run buildCreate rulesetmcp.config.json in your workspace:
{
"projects": [
{
"id": "my-api",
"name": "My API Project",
"paths": ["/path/to/my-api"],
"rulesPaths": ["rules/", "docs/rules/"Loading reviews...