context-mapper-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 +13 -14
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Context Mapper MCP Server
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/context-mapper-mcp.svg)](https://www.npmjs.com/package/context-mapper-mcp)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+
3
6
  An MCP (Model Context Protocol) server that enables AI assistants to work with Domain-Driven Design models using Context Mapper's CML (Context Mapping Language).
4
7
 
5
8
  ## Features
@@ -35,14 +38,13 @@ The server validates models in real-time to prevent common CML errors:
35
38
 
36
39
  ## Installation
37
40
 
41
+ ### Claude Code
42
+
38
43
  ```bash
39
- npm install
40
- npm run build
44
+ claude mcp add context-mapper -- npx -y context-mapper-mcp
41
45
  ```
42
46
 
43
- ## Usage
44
-
45
- ### As MCP Server
47
+ ### Claude Desktop
46
48
 
47
49
  Add to your Claude Desktop configuration (`claude_desktop_config.json`):
48
50
 
@@ -50,8 +52,8 @@ Add to your Claude Desktop configuration (`claude_desktop_config.json`):
50
52
  {
51
53
  "mcpServers": {
52
54
  "context-mapper": {
53
- "command": "node",
54
- "args": ["/path/to/context_mapper_mcp/dist/index.js"]
55
+ "command": "npx",
56
+ "args": ["-y", "context-mapper-mcp"]
55
57
  }
56
58
  }
57
59
  }
@@ -215,14 +217,11 @@ BoundedContext CustomerManagement {
215
217
  ## Development
216
218
 
217
219
  ```bash
218
- # Build
220
+ git clone https://github.com/thijs-hakkenberg/contextmapper_mcp.git
221
+ cd contextmapper_mcp
222
+ npm install
219
223
  npm run build
220
-
221
- # Watch mode
222
- npm run dev
223
-
224
- # Run tests
225
- node test-run.mjs
224
+ npm test
226
225
  ```
227
226
 
228
227
  ## Architecture
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "context-mapper-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "MCP server for Domain-Driven Design with Context Mapper CML",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",