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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@swiftcode/mcp

v1.1.0

Published

MCP server for Swiftcode - Automatic code generation tool for Swagger API and Vue components

Readme

Swiftcode MCP Server

Project Overview

Swiftcode MCP Server is a Model Context Protocol (MCP) server that provides automatic code generation capabilities for modern web development. This server focuses on generating TypeScript API clients from Swagger/OpenAPI specifications and Vue.js components for rapid frontend development.

Features

  • Swagger/OpenAPI to TypeScript: Automatically generate TypeScript API clients from Swagger specifications
  • Vue Component Generation: Create complete Vue 3 list pages with filters, tables, and pagination
  • Template Management: Access and utilize pre-built code generation templates
  • Code Validation: Validate Swagger/OpenAPI specifications before generation
  • Mock Data Generation: Optionally generate mock data for testing purposes

Tools

1. generate_api_client

Generate TypeScript API client from Swagger/OpenAPI specification.

Parameters:

  • swagger_url (string): URL to Swagger/OpenAPI JSON specification
  • swagger_content (string): Direct Swagger/OpenAPI JSON or YAML content
  • output_format (string): Output format ("typescript" or "javascript", default: "typescript")
  • include_types (boolean): Whether to generate TypeScript type definitions (default: true)

Example:

{
  "swagger_url": "https://api.example.com/swagger.json",
  "output_format": "typescript",
  "include_types": true
}

2. generate_vue_list

Generate Vue list page component with table and filters.

Parameters:

  • page_config (object): Page configuration with Chinese/English names and features
  • filters (object): Filter configuration for search functionality
  • table_columns (object): Table column definitions
  • generate_mock (boolean): Whether to generate mock data (default: false)

Example:

{
  "page_config": {
    "cn": "用户管理",
    "en": "userManagement",
    "select": true,
    "btn": ["新增", "删除"]
  },
  "filters": {
    "用户名": "input",
    "状态": "select",
    "创建时间": "daterange"
  },
  "table_columns": {
    "用户名": "text",
    "邮箱": "text",
    "创建时间": "time",
    "操作": {
      "type": "operate",
      "render": ["编辑", "删除"]
    }
  }
}

3. get_templates

Get available code generation templates.

Parameters:

  • template_type (string): Type of templates to retrieve ("vue-list", "api-client", or "all")

4. validate_swagger

Validate Swagger/OpenAPI specification.

Parameters:

  • swagger_url (string): URL to Swagger/OpenAPI specification
  • swagger_content (string): Direct Swagger/OpenAPI content

Prompts

The server provides several helpful prompts:

  • swiftcode_getting_started: Introduction guide to Swiftcode features
  • swagger_to_typescript: Detailed guide for Swagger to TypeScript conversion
  • vue_component_generation: Vue component generation guide and best practices
  • troubleshooting: Common issues and troubleshooting guide

Supported Technologies

Frontend Frameworks

  • Vue 3 with Composition API
  • Element Plus UI components
  • TypeScript support

API Specifications

  • Swagger 2.0
  • OpenAPI 3.0+
  • JSON and YAML formats

Generated Code Features

  • TypeScript interfaces and types
  • Vue 3 reactive components
  • Element Plus form and table components
  • Pagination and filtering
  • Mock data generation

Setup

NPX (Recommended)

Add to your MCP client configuration:

{
  "mcpServers": {
    "swiftcode-npm": {
      "command": "npx",
      "args": ["-y", "@swiftcode/mcp"]
    }
  }
}

Local Development

pnpm install

# 编译 mcp
ppm build

# 启动 mcp 调试器
pnpm inspector

Add to your MCP client configuration:

{
  "mcpServers": {
    // 本地开发
    "swiftcode-local": {
      "command": "node",
      "args": ["swiftcode-mcp-server/dist/index.js"]
    }
  }
}

Docker

# Build Docker image
docker build -t swiftcode-mcp .

# Run container
docker run -it swiftcode-mcp

Usage Examples

Generate API Client from Swagger URL

// Use the generate_api_client tool
{
  "swagger_url": "https://petstore.swagger.io/v2/swagger.json",
  "output_format": "typescript",
  "include_types": true
}

Generate Vue List Component

// Use the generate_sfc_client tool
{
  "page_config": {
    "cn": "产品列表",
    "en": "productList",
    "select": true,
    "top": true,
    "btn": ["新增产品", "批量删除"]
  },
  "filters": {
    "产品名称": "input",
    "分类": "select",
    "价格范围": {
      "type": "daterange",
      "range": [1, "m"]
    }
  },
  "table_columns": {
    "选择": "select",
    "序号": "index",
    "产品名称": "text",
    "价格": "text",
    "创建时间": "date",
    "操作": {
      "type": "operate",
      "fixed": "right",
      "render": ["编辑", "删除", "查看详情"]
    }
  },
  "generate_mock": true
}

Filter Types

  • input: Text input field
  • select: Dropdown selection
  • daterange: Date range picker
  • datetime: Date and time picker
  • date: Date picker only
  • datetimerange: Date and time range picker

Table Column Types

  • text: Plain text column
  • time/date: Formatted date/time column
  • select: Selection checkbox column
  • index: Auto-incrementing index column
  • operate: Action buttons column
  • option: Enum/status column
  • link: Clickable link column
  • tag: Tag/badge column

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests if applicable
  5. Submit a pull request

License

This project is licensed under the MIT License. See the LICENSE file for details.

Support

For questions, issues, or feature requests, please visit the GitHub repository or contact the development team.