FrameLayoutKit MCP Server

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.

Category
Visit Server

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

  1. FrameLayoutGenerator - Generates FrameLayoutKit code
  2. AutoLayoutConverter - Converts Auto Layout to FrameLayoutKit
  3. FrameLayoutValidator - Validates syntax and semantics
  4. 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:

Acknowledgments

  • FrameLayoutKit by Nam Kennic
  • Anthropic's Model Context Protocol
  • The iOS development community

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

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.

Official
Featured
Python
graphlit-mcp-server

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.

Official
Featured
TypeScript
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured