npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

framelayoutkit-mcp-server

v1.2.1

Published

Model Context Protocol server for FrameLayoutKit iOS framework - generates Swift UIKit code using FrameLayoutKit syntax

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:

let stackLayout = VStackLayout()
stackLayout.spacing = 20
stackLayout.distribution = .center
stackLayout.padding(16)

// Add views to stack
let titleLabel = {
    let label = UILabel()
    label.text = "Welcome"
    return label
}()
stackLayout + titleLabel
let button = {
    let button = UIButton(type: .system)
    button.setTitle("Get Started", for: .normal)
    return button
}()
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