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.
- package/README.md +13 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# Context Mapper MCP Server
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/context-mapper-mcp)
|
|
4
|
+
[](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
|
-
|
|
40
|
-
npm run build
|
|
44
|
+
claude mcp add context-mapper -- npx -y context-mapper-mcp
|
|
41
45
|
```
|
|
42
46
|
|
|
43
|
-
|
|
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": "
|
|
54
|
-
"args": ["
|
|
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
|
-
|
|
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
|