Socket
Book a DemoInstallSign in
Socket

create-mcp-use-app

Package Overview
Dependencies
Maintainers
1
Versions
83
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package version was removed
This package version has been unpublished, mostly likely due to security reasons

create-mcp-use-app

unpublished
Source
npmnpm
Version
1.0.0
Weekly downloads
1.2K
146.89%
Maintainers
1
Weekly downloads
 
Created
Source

create-mcp-use-app

Create a new MCP (Model Context Protocol) application with a single command.

Usage

# Using npx
npx create-mcp-use-app my-app

# Using yarn
yarn create mcp-use-app my-app

# Using npm
npm create mcp-use-app my-app

What it creates

This tool creates a new MCP server with:

  • ✅ Basic MCP server setup with proper protocol implementation
  • ✅ Example "hello" tool to get you started
  • ✅ Package.json with MCP SDK dependency
  • ✅ Development scripts (start, dev)
  • ✅ README with usage instructions
  • ✅ .gitignore file

Features

  • Interactive setup with prompts for project name, description, and author
  • Template-based file generation
  • Proper MCP protocol implementation
  • Ready-to-run example server
  • Development-friendly setup

Generated Project Structure

my-mcp-app/
├── package.json          # Project configuration
├── index.js              # Main MCP server file
├── README.md             # Project documentation
└── .gitignore           # Git ignore rules

Getting Started with Your New MCP App

After creating your app:

cd my-mcp-app
yarn install
yarn start

Development

For development with auto-reload:

yarn dev

Customization

Edit the generated index.js file to add your own tools and functionality. The template includes a simple "hello" tool as an example.

Resources

  • Model Context Protocol Documentation
  • MCP SDK Documentation

License

MIT

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts