FrameLayoutKit MCP Server
Provides AI-powered assistance for iOS developers using FrameLayoutKit, enabling code generation, Auto Layout conversion to FrameLayoutKit syntax, layout validation, and migration guidance for Swift UIKit projects.
README
FrameLayoutKit MCP Server
A Model Context Protocol (MCP) server for FrameLayoutKit, providing AI-powered assistance for iOS developers using the FrameLayoutKit framework. This server helps generate Swift UIKit code using FrameLayoutKit's intuitive syntax, convert existing Auto Layout code, validate layouts, and provide migration guidance.
Features
🚀 Code Generation
Generate FrameLayoutKit code for all layout types:
- FrameLayout - Single view container with padding and alignment
- VStackLayout/HStackLayout - Vertical/horizontal stacks
- ZStackLayout - Overlapping views
- DoubleFrameLayout - Two-view layouts with distribution control
- GridFrameLayout - Multi-row/column grid layouts
- ScrollStackView - Scrollable stacks
- FlowFrameLayout - Wrapping flow layouts
🔄 Auto Layout Conversion
Convert existing UIKit Auto Layout code to FrameLayoutKit:
- NSLayoutConstraint conversion
- UIStackView migration
- Layout anchor transformation
- Preserves code structure and comments
✅ Code Validation
Validate FrameLayoutKit code for:
- Syntax correctness
- Semantic validity
- Best practices
- Performance optimization suggestions
📋 Migration Assistance
Generate comprehensive migration guides:
- Project-wide analysis
- File-by-file recommendations
- Effort estimation
- Step-by-step migration strategy
Installation
# Clone the repository
git clone https://github.com/kennic/framelayoutkit-mcp.git
cd framelayoutkit-mcp
# Install dependencies
npm install
# Start the server
npm start
Configuration
For Claude Desktop
Add to your Claude configuration file:
{
"mcpServers": {
"framelayoutkit": {
"command": "node",
"args": ["/path/to/framelayoutkit-mcp/src/index.js"],
"env": {}
}
}
}
For VS Code with Continue
Add to your Continue configuration:
{
"models": [{
"title": "Claude with FrameLayoutKit",
"provider": "anthropic",
"model": "claude-3-sonnet",
"mcpServers": [{
"name": "framelayoutkit",
"command": "node",
"args": ["./framelayoutkit-mcp/src/index.js"]
}]
}]
}
Usage Examples
Generate a VStackLayout
// Request
{
"tool": "generate-framelayout",
"arguments": {
"layoutType": "VStackLayout",
"views": [
{
"name": "titleLabel",
"type": "UILabel",
"text": "Welcome"
},
{
"name": "button",
"type": "UIButton",
"text": "Get Started"
}
],
"configuration": {
"spacing": 20,
"padding": 16,
"distribution": "center"
}
}
}
Generated Swift code:
// Add views to stack
let titleLabel = {
let label = UILabel()
label.text = "Welcome"
return label
}()
let button = {
let button = UIButton(type: .system)
button.setTitle("Get Started", for: .normal)
return button
}()
let stackLayout = VStackLayout()
stackLayout.spacing(20).distribution(.center).padding(16)
stackLayout + titleLabel
stackLayout + button
Convert Auto Layout to FrameLayoutKit
// Request
{
"tool": "convert-autolayout",
"arguments": {
"swiftCode": "/* Your existing Auto Layout code */",
"options": {
"migrationStrategy": "conservative",
"useOperatorSyntax": true
}
}
}
Validate FrameLayoutKit Code
// Request
{
"tool": "validate-framelayout",
"arguments": {
"swiftCode": "/* Your FrameLayoutKit code */",
"checkLevel": "full"
}
}
FrameLayoutKit Syntax Verification
The MCP server correctly implements FrameLayoutKit's syntax patterns:
✅ Operator Usage
+operator for adding views to layouts<+and+>operators for DoubleFrameLayout- Chainable method syntax
✅ Layout Properties
- Correct alignment enums (
.top,.center,.bottom,.fill,.fit) - Distribution options per layout type
- Proper padding/spacing application
✅ View Wrapping
- All views automatically wrapped in FrameLayout instances
- Individual item configuration support
- Correct frame calculation delegation
✅ Layout Hierarchies
- Proper nesting of layout types
- Correct parent-child relationships
- Internal stack management for Grid and Flow layouts
Architecture
The server is built with:
- Node.js with ES modules
- @modelcontextprotocol/sdk for MCP implementation
- Zod for schema validation
- Modular class structure for each tool
Key Components
- FrameLayoutGenerator - Generates FrameLayoutKit code
- AutoLayoutConverter - Converts Auto Layout to FrameLayoutKit
- FrameLayoutValidator - Validates syntax and semantics
- MigrationAnalyzer - Analyzes projects for migration
Contributing
Contributions are welcome! Please ensure:
- Code follows FrameLayoutKit's official syntax
- All generated code is valid Swift
- Tests cover new functionality
- Documentation is updated
License
MIT License - see LICENSE file for details
Support
For issues and questions:
- GitHub Issues: framelayoutkit-mcp/issues
- FrameLayoutKit Documentation: FrameLayoutKit Docs
Acknowledgments
- FrameLayoutKit by Nam Kennic
- Anthropic's Model Context Protocol
- The iOS development community
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
E2B
Using MCP to run code via e2b.