project-customization-mcp 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/bin/cli.js +7 -0
  2. package/package.json +9 -7
package/bin/cli.js ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env node
2
+
3
+ // Lightweight launcher that executes the compiled MCP server entry.
4
+ import('../build/index.js').catch((err) => {
5
+ console.error('Failed to start project-customization-mcp:', err);
6
+ process.exit(1);
7
+ });
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "project-customization-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "An MCP server for automating project customization based on best practices. Analyzes projects and generates customization files for any IDE or tool that supports the Model Context Protocol.",
5
5
  "main": "./build/index.js",
6
6
  "bin": {
7
- "project-customization-mcp": "./build/index.js"
7
+ "project-customization-mcp": "./bin/cli.js"
8
8
  },
9
9
  "scripts": {
10
10
  "build": "tsc",
@@ -14,8 +14,10 @@
14
14
  },
15
15
  "files": [
16
16
  "build",
17
+ "bin",
17
18
  "LICENSE",
18
- "README.md"
19
+ "README.md",
20
+ "package.json"
19
21
  ],
20
22
  "keywords": [
21
23
  "mcp",
@@ -27,16 +29,16 @@
27
29
  "ai",
28
30
  "llm"
29
31
  ],
30
- "author": "Your Name",
32
+ "author": "Ivan Arsenović <ivanarsenovic015@gmail.com>",
31
33
  "license": "MIT",
32
34
  "type": "module",
33
35
  "repository": {
34
36
  "type": "git",
35
- "url": "https://github.com/yourusername/project-customization-mcp.git"
37
+ "url": "https://github.com/e1imba/project-customization-mcp.git"
36
38
  },
37
- "homepage": "https://github.com/yourusername/project-customization-mcp#readme",
39
+ "homepage": "https://github.com/e1imba/project-customization-mcp#readme",
38
40
  "bugs": {
39
- "url": "https://github.com/yourusername/project-customization-mcp/issues"
41
+ "url": "https://github.com/e1imba/project-customization-mcp/issues"
40
42
  },
41
43
  "dependencies": {
42
44
  "@modelcontextprotocol/sdk": "^1.25.3",