aids-server
Verified Safeby heyadam
Overview
A production-ready MCP server that exposes design system components and style guides for AI assistants to generate UI code and understand design tokens.
Installation
npm run devSecurity Notes
The server implements strong input validation using Zod schemas for all JSON-RPC requests, preventing malformed inputs and potential injection attacks. Host header validation is in place to prevent injection. Rate limiting (100 requests/minute/IP) is implemented, mitigating basic DoS attacks, but it is in-memory and resets on serverless cold starts, making it less robust for persistent, distributed attacks. CORS allows all origins ('*'), which is acceptable for a public API but could be tightened if specific client origins are known. No hardcoded secrets or 'eval' usage were identified.
Similar Servers
mcp-handler
Provides a Vercel adapter for the Model Context Protocol (MCP), enabling real-time communication between applications and AI models through Next.js or Nuxt.
ai-skills-hub
Provides AI assistants with access to a team's coding standards, best practices, and knowledge base by dynamically loading Markdown skill files via an MCP server.
ui-ux-pro-mcp
Provides AI-powered UI/UX design intelligence by offering natural language search across curated design resources.
adeo-mozaic-mcp
Provides AI assistants with intelligent access to the Mozaic Design System's design tokens, components, icons, and documentation for code generation and lookup.