@lumenflow/mcp 3.21.0 → 4.0.0
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/LICENSE +1 -1
- package/README.md +13 -0
- package/package.json +9 -9
package/LICENSE
CHANGED
|
@@ -15,4 +15,4 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
15
15
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
16
16
|
|
|
17
17
|
For the full license text, see the LICENSE file in the root of the
|
|
18
|
-
LumenFlow repository: https://github.com/hellmai/lumenflow
|
|
18
|
+
LumenFlow repository: https://github.com/hellmai/lumenflow
|
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# @lumenflow/mcp
|
|
2
|
+
|
|
3
|
+
MCP stdio server for the LumenFlow workflow framework.
|
|
4
|
+
|
|
5
|
+
## What It Provides
|
|
6
|
+
|
|
7
|
+
- Model Context Protocol server implementation
|
|
8
|
+
- Exposes LumenFlow workflow commands as MCP tools
|
|
9
|
+
- Stdio transport for IDE and agent integrations
|
|
10
|
+
|
|
11
|
+
## License
|
|
12
|
+
|
|
13
|
+
AGPL-3.0-only. See [LICENSE](./LICENSE).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lumenflow/mcp",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "MCP stdio server for LumenFlow workflow framework",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lumenflow",
|
|
@@ -10,16 +10,16 @@
|
|
|
10
10
|
"wu",
|
|
11
11
|
"work-unit"
|
|
12
12
|
],
|
|
13
|
-
"homepage": "https://github.com/hellmai/lumenflow
|
|
13
|
+
"homepage": "https://github.com/hellmai/lumenflow",
|
|
14
14
|
"repository": {
|
|
15
15
|
"type": "git",
|
|
16
|
-
"url": "https://github.com/hellmai/lumenflow
|
|
16
|
+
"url": "https://github.com/hellmai/lumenflow.git",
|
|
17
17
|
"directory": "packages/@lumenflow/mcp"
|
|
18
18
|
},
|
|
19
19
|
"license": "AGPL-3.0-only",
|
|
20
20
|
"author": {
|
|
21
|
-
"name": "
|
|
22
|
-
"url": "https://
|
|
21
|
+
"name": "LumenFlow Contributors",
|
|
22
|
+
"url": "https://lumenflow.dev"
|
|
23
23
|
},
|
|
24
24
|
"type": "module",
|
|
25
25
|
"main": "./dist/index.js",
|
|
@@ -53,10 +53,10 @@
|
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
55
55
|
"zod": "^4.3.6",
|
|
56
|
-
"@lumenflow/
|
|
57
|
-
"@lumenflow/
|
|
58
|
-
"@lumenflow/
|
|
59
|
-
"@lumenflow/metrics": "
|
|
56
|
+
"@lumenflow/kernel": "4.0.0",
|
|
57
|
+
"@lumenflow/memory": "4.0.0",
|
|
58
|
+
"@lumenflow/core": "4.0.0",
|
|
59
|
+
"@lumenflow/metrics": "4.0.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@vitest/coverage-v8": "^4.0.18",
|