Business Central
HTTP-SSEStandardized development rules server for Business Central projects optimized for Cursor editor.
Standardized development rules server for Business Central projects optimized for Cursor editor.
A server that provides standardized development rules and context for Business Central projects, optimized for use with Cursor editor.
To use the BC standards in your project:
Clone this repository or copy the following files to your project:
bc-rules.json.cursor-contextCursor will automatically pick up these rules when editing files in your project.
To update or manage the rules:
bc-rules.json directly to update static rulesnode scripts/generateRules.js to update the static file from the database./scripts/deployRender.sh to prepare for deploymentNODE_ENV: productionMCP_SERVER_PORT: 10000MONGODB_URI: Your MongoDB connection string (optional)/cursorrules: Get the current rules (JSON format)/health: Server health checkRules are structured as follows:
{ "version": "1.0", "rules": [ "Follow business naming conventions for all code", "Include proper error handling in all functions" ], "context": { "businessDomain": "Business Central", "preferredPatterns": ["Repository pattern", "SOLID principles"] } }