Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@modelcontextprotocol/create-server

Package Overview
Dependencies
Maintainers
0
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@modelcontextprotocol/create-server - npm Package Compare versions

Comparing version 0.3.0 to 0.3.1

template/dotfile-gitignore

5

build/index.js

@@ -118,3 +118,6 @@ #!/usr/bin/env node

continue;
const targetPath = path.join(directory, file.replace(".ejs", ""));
// Special handling for dot files - remove the leading dot from template name
const targetPath = path.join(directory, file.startsWith('dotfile-')
? `.${file.slice(8).replace('.ejs', '')}`
: file.replace('.ejs', ''));
const targetDir = path.dirname(targetPath);

@@ -121,0 +124,0 @@ // Create subdirectories if needed

2

package.json
{
"name": "@modelcontextprotocol/create-server",
"version": "0.3.0",
"version": "0.3.1",
"description": "CLI tool to create new MCP servers",

@@ -5,0 +5,0 @@ "license": "MIT",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc