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
Python REPLThis MCP server provides a Python REPL (Read-Eval-Print Loop) as a tool. It allows execution of Pyth...View
Tabby-MCP-ServerView
Vibe CheckAdaptive metacognitive oversight for autonomous AI agents – a research-backed MCP server keeping LLM...View
MCP Server ExecutableView
PentestGPT-MCPThis project is an advanced penetration testing tool based on the original "PentestGPT" paper. It ex...View
CLI ExecA powerful CLI command execution MCP server that enables running shell commands with structured outp...View