Create MCP App - Secure MCP Server by ALMC Security 2025

Create MCP App

View on GitHub

create-mcp-app

Generate Model Context Protocol (MCP) servers in TypeScript.

Usage

npm create mcp-app [project-name]

Creates MCP server with:

  • Calculator, Weather, or Filesystem examples
  • Professional TypeScript structure
  • Claude Desktop integration

Generated Structure

project/
├── src/
│   ├── index.ts
│   ├── tools/
│   ├── schemas/
│   └── handlers/
├── package.json
├── tsconfig.json
└── claude_desktop_config.json

Development

npm install
npm run build
npm start

Claude Desktop Setup

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "project-name": {
      "command": "node",
      "args": ["path/to/project/dist/index.js"]
    }
  }
}

Related in Development - Secure MCP Servers

ServerSummaryActions
XcodeBuildMCPA Model Context Protocol (MCP) server that provides Xcode-related tools for integration with AI assi...View
MCP Script RunnerA Model Context Protocol (MCP) server that provides coding agents with a generic interface to execut...View
Add ToolTo install the add_tool MCP server, run the following command:View
AI Develop Assistant协助AI开发者进行智能化需求分析与架构设计的MCP工具View
Windows APIMCP server for the windows API.View
spm-mcpA Model Context Protocol (MCP) server that provides automation capabilities using Swift Package Mana...View