sirius-framework-mcp 0.1.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 +24 -2
- package/dist/index.js +0 -0
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -6,6 +6,14 @@ Gives AI assistants deep understanding of Sirius framework patterns. Works with
|
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
9
|
+
### From npm
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install -g sirius-framework-mcp
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
### From source
|
|
16
|
+
|
|
9
17
|
```bash
|
|
10
18
|
git clone <this-repo>
|
|
11
19
|
cd sirius-framework-mcp
|
|
@@ -17,10 +25,11 @@ npm link
|
|
|
17
25
|
## Uninstall
|
|
18
26
|
|
|
19
27
|
```bash
|
|
20
|
-
npm
|
|
21
|
-
rm -rf <sirius-framework-mcp-directory>
|
|
28
|
+
npm uninstall -g sirius-framework-mcp
|
|
22
29
|
```
|
|
23
30
|
|
|
31
|
+
If installed from source, use `npm unlink -g sirius-framework-mcp` instead.
|
|
32
|
+
|
|
24
33
|
Then remove the `sirius` entry from your MCP client configuration.
|
|
25
34
|
|
|
26
35
|
## Setup
|
|
@@ -37,6 +46,19 @@ The server uses **stdio transport** and auto-detects which Sirius module you're
|
|
|
37
46
|
}
|
|
38
47
|
```
|
|
39
48
|
|
|
49
|
+
Or without a global install, using `npx`:
|
|
50
|
+
|
|
51
|
+
```json
|
|
52
|
+
{
|
|
53
|
+
"mcpServers": {
|
|
54
|
+
"sirius": {
|
|
55
|
+
"command": "npx",
|
|
56
|
+
"args": ["-y", "sirius-framework-mcp"]
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
```
|
|
61
|
+
|
|
40
62
|
Refer to your MCP client's documentation for the exact configuration file location and format.
|
|
41
63
|
|
|
42
64
|
## Try it out
|
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sirius-framework-mcp",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "MCP server that gives AI assistants deep understanding of Sirius framework patterns",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"sirius-framework-mcp": "
|
|
7
|
+
"sirius-framework-mcp": "dist/index.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"dist",
|
|
@@ -22,6 +22,10 @@
|
|
|
22
22
|
"framework"
|
|
23
23
|
],
|
|
24
24
|
"license": "Apache-2.0",
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "https://github.com/scireum-mbo/sirius-framework-mcp.git"
|
|
28
|
+
},
|
|
25
29
|
"engines": {
|
|
26
30
|
"node": ">=18"
|
|
27
31
|
},
|