business-design-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 +9 -3
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -4,20 +4,26 @@ MCP server for business and project design frameworks. Create and manage Busines
|
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
|
+
```bash
|
|
8
|
+
npx business-design-mcp
|
|
9
|
+
```
|
|
10
|
+
|
|
7
11
|
### Claude Code
|
|
8
12
|
|
|
9
13
|
```bash
|
|
10
|
-
claude mcp add business-design -- npx -y
|
|
14
|
+
claude mcp add business-design -- npx -y business-design-mcp
|
|
11
15
|
```
|
|
12
16
|
|
|
13
|
-
|
|
17
|
+
### Claude Desktop
|
|
18
|
+
|
|
19
|
+
Add to your Claude Desktop config (`~/Library/Application Support/Claude/claude_desktop_config.json` on macOS):
|
|
14
20
|
|
|
15
21
|
```json
|
|
16
22
|
{
|
|
17
23
|
"mcpServers": {
|
|
18
24
|
"business-design": {
|
|
19
25
|
"command": "npx",
|
|
20
|
-
"args": ["-y", "
|
|
26
|
+
"args": ["-y", "business-design-mcp"]
|
|
21
27
|
}
|
|
22
28
|
}
|
|
23
29
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "business-design-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "MCP server for business and project design frameworks",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"test": "vitest run",
|
|
28
28
|
"test:watch": "vitest",
|
|
29
29
|
"test:coverage": "vitest run --coverage",
|
|
30
|
+
"typecheck": "tsc --noEmit",
|
|
30
31
|
"prepare": "npm run build"
|
|
31
32
|
},
|
|
32
33
|
"keywords": [
|