@corbat-tech/coding-standards-mcp 1.0.0 → 1.0.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/README.md +14 -19
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -6,6 +6,7 @@
6
6
 
7
7
  **Your architecture rules, TDD workflow, and SOLID principles — injected automatically into every AI response.**
8
8
 
9
+ [![npm version](https://img.shields.io/npm/v/@corbat-tech/coding-standards-mcp.svg)](https://www.npmjs.com/package/@corbat-tech/coding-standards-mcp)
9
10
  [![CI](https://github.com/corbat-tech/corbat-mcp/actions/workflows/ci.yml/badge.svg)](https://github.com/corbat-tech/corbat-mcp/actions/workflows/ci.yml)
10
11
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
11
12
  [![MCP](https://img.shields.io/badge/MCP-1.0-blue.svg)](https://modelcontextprotocol.io/)
@@ -64,13 +65,7 @@ Corbat: ✓ Detected Java/Spring project
64
65
 
65
66
  ## Quick Start
66
67
 
67
- **Step 1** — Clone and build:
68
- ```bash
69
- git clone https://github.com/corbat-tech/corbat-mcp.git
70
- cd corbat-mcp && npm install && npm run build
71
- ```
72
-
73
- **Step 2** — Connect to Claude:
68
+ **Step 1** — Connect to Claude:
74
69
 
75
70
  <table>
76
71
  <tr>
@@ -78,7 +73,7 @@ cd corbat-mcp && npm install && npm run build
78
73
  <td>
79
74
 
80
75
  ```bash
81
- claude mcp add corbat node /absolute/path/to/corbat-mcp/dist/index.js
76
+ claude mcp add corbat -- npx -y @corbat-tech/coding-standards-mcp
82
77
  ```
83
78
 
84
79
  </td>
@@ -92,8 +87,8 @@ Edit `~/.config/Claude/claude_desktop_config.json`:
92
87
  {
93
88
  "mcpServers": {
94
89
  "corbat": {
95
- "command": "node",
96
- "args": ["/absolute/path/to/corbat-mcp/dist/index.js"]
90
+ "command": "npx",
91
+ "args": ["-y", "@corbat-tech/coding-standards-mcp"]
97
92
  }
98
93
  }
99
94
  }
@@ -103,7 +98,7 @@ Edit `~/.config/Claude/claude_desktop_config.json`:
103
98
  </tr>
104
99
  </table>
105
100
 
106
- **Step 3** — Use it:
101
+ **Step 2** — Use it:
107
102
  ```
108
103
  "Create a user service"
109
104
  ```
@@ -224,7 +219,7 @@ Corbat adapts its rules based on what you're doing:
224
219
 
225
220
  ### Option A: Interactive generator
226
221
  ```bash
227
- npx /path/to/corbat-mcp/dist/cli/init.js
222
+ npx corbat-init
228
223
  ```
229
224
 
230
225
  ### Option B: Manual config
@@ -301,11 +296,10 @@ Use `search` tool: *"search kafka"* → Returns event-driven architecture guidel
301
296
  <details>
302
297
  <summary><b>Claude can't find corbat</b></summary>
303
298
 
304
- 1. Use **absolute path** in config (not relative)
305
- 2. Verify: `ls /your/path/to/corbat-mcp/dist/index.js`
306
- 3. Check `node` is in PATH: `which node`
307
- 4. Restart Claude completely
308
- 5. Check Claude's MCP logs
299
+ 1. Verify npm/npx is in PATH: `which npx`
300
+ 2. Test manually: `npx @corbat-tech/coding-standards-mcp`
301
+ 3. Restart Claude completely
302
+ 4. Check Claude's MCP logs
309
303
 
310
304
  </details>
311
305
 
@@ -334,8 +328,9 @@ Or specify in prompt: *"...using profile nodejs"*
334
328
  <summary><b>Permission errors (macOS/Linux)</b></summary>
335
329
 
336
330
  ```bash
337
- chmod +x /path/to/corbat-mcp/dist/index.js
338
- which node # Use this absolute path in config
331
+ # Clear npx cache and retry
332
+ npx clear-npx-cache
333
+ npx @corbat-tech/coding-standards-mcp
339
334
  ```
340
335
 
341
336
  </details>
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@corbat-tech/coding-standards-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "AI coding standards that apply themselves - MCP server for Claude",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "bin": {
8
- "corbat-mcp": "dist/index.js",
8
+ "coding-standards-mcp": "dist/index.js",
9
+ "@corbat-tech/coding-standards-mcp": "dist/index.js",
9
10
  "corbat-init": "dist/cli/init.js"
10
11
  },
11
12
  "repository": {