@modelcontextprotocol/create-server
Advanced tools
Comparing version 0.3.0 to 0.3.1
@@ -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 |
{ | ||
"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", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
17053
9
171