@loomweaver/mcp 0.7.2

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 (3) hide show
  1. package/README.md +62 -0
  2. package/dist/main.mjs +33229 -0
  3. package/package.json +34 -0
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@loomweaver/mcp",
3
+ "version": "0.7.2",
4
+ "description": "LoomWeaver MCP server: exposes LoomWeaver's scaffolding and validation as MCP tools, so an AI assistant in any product repo can scaffold and validate weavers, distributions and integrations without a LoomWeaver checkout.",
5
+ "keywords": [
6
+ "loomweaver",
7
+ "mcp",
8
+ "model-context-protocol",
9
+ "scaffolding",
10
+ "codegen",
11
+ "ai-tools"
12
+ ],
13
+ "license": "Apache-2.0",
14
+ "author": "Norbert Rosenwinkel (https://loomweaver.dev)",
15
+ "type": "module",
16
+ "bin": {
17
+ "loomweaver-mcp": "./dist/main.mjs"
18
+ },
19
+ "files": [
20
+ "dist"
21
+ ],
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "homepage": "https://loomweaver.dev",
26
+ "bugs": {
27
+ "url": "https://github.com/yesbert/loomweaver/issues"
28
+ },
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "git+https://github.com/yesbert/loomweaver.git",
32
+ "directory": "platform/libs/tooling/mcp"
33
+ }
34
+ }