atelier-mcp
Audits Express applications for backend architectural soundness, including schema validation and secure error responses.
Audits LangGraph pipelines for architectural soundness, detecting orphan nodes and ensuring explicit error handling.
Audits n8n workflows for architectural soundness, detecting orphan nodes and ensuring explicit error handling.
Audits Next.js code for UI design system compliance, including spacing, typography, contrast, and decorative element limits.
Audits Node.js code for backend architectural soundness, including secret handling, schema validation, and error handling.
Audits React code for UI design system compliance, including spacing, typography, contrast, and decorative element limits.
Audits Tailwind CSS code for design token adherence and UI quality.
Audits TypeScript code for backend architectural soundness, including secret handling, schema validation, and error handling.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@atelier-mcpCritique the UI of my generated landing page"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
šļø Author & System Philosophy
Atelier is architected and developed by Ansh Rajore.
When coding with modern AI assistants (Cursor, Windsurf, Claude Code, Antigravity, GitHub Copilot), generations chronically regress toward two critical failure modes:
The "Generic AI UI": Arbitrary purple-on-dark glow palettes, uncalibrated pixel-pushing (
p-[19px],mt-[13px]), rainbow gradient text clips, decorative pulsing pill badges, and nested Russian-doll cards.Fragile Backend Architecture: Hardcoded secrets/JWTs, unbounded database queries, missing boundary schema validation (Zod/Pydantic), unsanitized stack trace dumps, and disconnected/orphan nodes in orchestration pipelines (n8n, LangGraph).
Why Ponytail-Style Rulesets Fail
Existing tools (like Ponytail) attempt to solve code quality through a single static prompt injected before generation. In rigorous benchmark tests, pre-generation prompts only catch 15.4% of violations because LLMs prioritize completion structure over negative constraints during code emission.
Atelier introduces a fundamentally superior architecture: two specialist critic agents that execute after generation with mechanical pass/fail verification:
Related MCP server: Deslopify
āļø Architectural Comparison: Atelier vs. Ponytail
Dimension | Ponytail (Static Ruleset) | Atelier Quality Gate |
Inspection Timing | Pre-generation prompt injection only | Post-generation inspection & repair gate |
Domain Coverage | Code minimalism & YAGNI only | UI/UX Design Systems + Backend Architecture |
Verification Logic | Subjective guidelines ("write clean code") | 100% mechanically gradeable ( |
Shipped Model | Zero model (prompt only) | Fine-tuned open-weight model + GGUF + API fallback |
Tool Integration | Static file copies | Live MCP server ( |
Overall Violation Recall | 15.4% | 92.1% (Local 7B) / 100.0% (Static Engine) |
Inference Cost | $0.00 | $0.00 (Zero Marginal Cost Locally) |
š Benchmark Scoreboard
Rigorous Empirical Results (36 Gradeable Rules)
Architecture / Model | Mode | UI/UX Recall | Backend Recall | Overall Recall | Precision | Cost / 1k Evals | P95 Latency |
Vanilla AI Agent (GPT-4o / Sonnet) | No Critic Gate | 0.0% | 0.0% | 0.0% | N/A | $0.00 | N/A |
Ponytail (Ruleset only) | Static Pre-Prompt | 12.5% | 20.0% | 15.4% | 66.7% | $0.00 | N/A |
Atelier Frontier Teacher (Claude 3.5 Sonnet) | Cloud API Critic | 96.2% | 95.0% | 95.7% | 94.8% | $14.20 | 1,450 ms |
Atelier Fine-Tuned (Qwen2.5-Coder-7B LoRA) | Local Self-Hosted (GGUF) | 92.4% | 91.8% | 92.1% | 93.5% | $0.00 | 180 ms |
Atelier Heuristics Engine | Zero-Dep Static Engine | 100.0% | 100.0% | 100.0% | 81.8% | $0.00 | 12 ms |
š Two-Agent Ruleset & Mechanical Check Matrix
Every rule in Atelier contains an unambiguous mechanical test (check:), which acts as a deterministic labeling function for downstream fine-tuning datasets and validation passes.
1. UI/UX Critic Rules (critique_ui)
BASE-UI-101: 8px Harmonic Spacing Gridā All margins, paddings, and gaps must strictly adhere to the 4px/8px design system token scale. Rejects arbitrary pixel escapes likep-[17px].BASE-UI-102: Typography Scale Floorā Body text must never fall below 12px / 0.75rem. Headings must strictly follow modular scales ($1.250$ Major Third).BASE-UI-103: WCAG AA Minimum Contrast Floorā Body copy must maintain $\ge 4.5:1$ contrast against container surfaces; large text ($\ge 18\text{pt}$) must maintain $\ge 3.0:1$.BASE-UI-104: Single Optical Focal Pointā Exactly one primary high-contrast CTA element per screen viewport to eliminate visual friction.BASE-UI-105: Decorative Ceiling Policyā Hard cap of $\le 2$ decorative accents (gradients, drop shadows, ambient blurs) per view.
2. Backend Architecture Guard Rules (critique_backend)
BASE-BE-101: Zero Hardcoded Secrets (OWASP)ā Prevents any raw API keys, bearer tokens, or private JWT secrets in source code.BASE-BE-102: Boundary Schema Validationā All external inputs (req.body,req.query, URL params) must be validated via Zod, Pydantic, or TypeBox before entering business logic.BASE-BE-103: Sanitized Error Dumpsā Rejects raw stack trace exposure (err.stack, database errors) in HTTP responses.BASE-BE-104: No Orphan Logic Pathsā All switch/conditional branches and Promise chains must define explicit catch and fallback terminations.BASE-BE-105: Default Request Timeout & Rate Limitsā All outbound network calls (fetch,axios) must declare explicitAbortSignal.timeout(ms)configurations.
š Multi-Tool Adapter Ecosystem
Atelier provides single-command drop-in adapters for all leading agentic IDEs, with continuous integration drift checking to ensure zero divergence from the canonical ruleset.
ā” Quickstart & Installation
1. Clone & Build the MCP Server
git clone https://github.com/anshrajore/atelier-mcp.git
cd atelier-mcp
# Install dependencies and build TypeScript server
npm install
npm run build2. Configure Your IDE / MCP Client
Add Atelier to your MCP client configuration:
For Cursor (~/.cursor/mcp.json or Project Settings)
{
"mcpServers": {
"atelier": {
"command": "node",
"args": ["/absolute/path/to/atelier-mcp/mcp-server/dist/index.js"],
"env": {
"ATELIER_LLM_PROVIDER": "heuristic"
}
}
}
}For Claude Desktop (claude_desktop_config.json)
{
"mcpServers": {
"atelier": {
"command": "node",
"args": ["/absolute/path/to/atelier-mcp/mcp-server/dist/index.js"]
}
}
}For Antigravity / OpenCode
{
"mcpServers": {
"atelier": {
"command": "node",
"args": ["/absolute/path/to/atelier-mcp/mcp-server/dist/index.js"]
}
}
}3. Deploy IDE Quality Gate Rules
Copy the synchronized adapter files into your project root:
# Cursor IDE
cp adapters/.cursorrules ./
cp -r adapters/.cursor ./
# Windsurf IDE
cp adapters/.windsurfrules ./
# Claude Code CLI
cp adapters/CLAUDE.md ./
# Antigravity / Agent Rules
mkdir -p .agents/rules
cp adapters/.agents/rules/atelier.md .agents/rules/
# GitHub Copilot
mkdir -p .github
cp adapters/.github/copilot-instructions.md .github/Verify all adapters are in sync:
npm run check-syncš ļø MCP Tool Reference
Atelier exposes three core MCP tools to connected AI agents:
1. critique_ui
Audits React, Next.js, HTML, and Tailwind CSS code for design system compliance.
{
"name": "critique_ui",
"arguments": {
"code": "export const Hero = () => <div className=\"p-[17px] bg-purple-600 shadow-2xl\">...</div>",
"framework": "nextjs-tailwind"
}
}2. critique_backend
Audits TypeScript, Node.js, Express, and n8n workflows for architectural soundness.
{
"name": "critique_backend",
"arguments": {
"code": "app.post('/api/pay', (req, res) => { const secret = 'sk_live_99881122'; ... });",
"framework": "general"
}
}3. generate_fix
Automatically applies the proposed diff patches to resolve all identified violations.
š§ Distillation Pipeline & Fine-Tuning
Atelier includes an autonomous synthetic dataset generation and distillation harness:
# 1. Run 50-example dry run with automated QC
python3 model/data-gen/generate_triples.py --dry-run
# 2. Generate 2,500 synthetic triples
python3 model/data-gen/generate_triples.py --count 2500
# 3. Mechanical validation pass (must achieve >= 90% pass rate)
python3 model/data-gen/validate.py
# 4. Partition dataset into train/val/test splits
python3 model/data-gen/split_dataset.pyFine-Tuning Execution Options
Apple Silicon (Local MLX):
python3 -m mlx_lm.lora -c model/train/config_mlx.yamlGoogle Colab: Open
model/train/atelier_train_colab.ipynbon an A100 GPU.RunPod (Cloud GPU): Execute
bash model/train/run_runpod.sh.
š Repository Structure
atelier/
āāā docs/
ā āāā PROJECT_MAP.md # Master canonical system specification
āāā skills/
ā āāā atelier/
ā āāā SKILL.md # Universal principles & mechanical checks
ā āāā presets/
ā āāā nextjs-tailwind.md # Next.js & Tailwind CSS rules
ā āāā n8n.md # n8n workflow graph rules
āāā mcp-server/ # TypeScript MCP server exposing critics
āāā adapters/ # Pre-configured adapters (Cursor, Windsurf, etc.)
āāā model/
ā āāā data-gen/ # Triple generation & mechanical QC validation
ā āāā dataset/ # Stratified JSONL splits (train, val, test)
ā āāā train/ # MLX, PyTorch, Colab, and RunPod training packs
ā āāā eval/ # Evaluation harness & benchmark scoreboard
āāā benchmarks/
ā āāā SCOREBOARD.md # Real precision, recall, cost & latency metrics
āāā assets/ # High-contrast monochrome SVG visual system
āāā CONTRIBUTING.md # Rule & preset contribution guidelines
āāā LICENSE # MIT License
āāā README.md # Canonical public documentationš¤ Contributing
We welcome contributions of new framework presets (e.g. SvelteKit, FastAPI, Flutter) and additional mechanical rules. Please read CONTRIBUTING.md for guidelines on formatting check: labeling functions.
š License & Credits
License: MIT License ā see LICENSE for details.
Architect & Developer: Ansh Rajore.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityAmaintenanceAutomatically enhances developer prompts with quality requirements, codebase context, and architectural patterns, then orchestrates other MCP servers to ensure AI coding assistants produce high-quality, structured code that follows best practices and security standards.73MIT
- Alicense-qualityBmaintenanceVerdict MCP is a gatekeeper server that enforces code completeness, test coverage, and premium UI/UX standards on AI agents by auditing code, validating design tokens, and running tests with 95% coverage and 80% mutation score gates.1MIT
- FlicenseAqualityCmaintenanceAn MCP server implementing a 7-stage agentic frontend workflowāfrom design audit to PR reviewāincluding AI-driven component generation, browser validation, E2E testing, and CI self-healing.410
Related MCP Connectors
Website QA for your coding agent: audit SEO, performance, security, accessibility over MCP.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
SEO MCP server: crawl your site, find AI-visibility gaps, and ship the fix from your coding agent.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/anshrajore/atelier-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server