@likec4/mcp 1.48.0 → 1.50.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/README.md +11 -1
- package/dist/THIRD-PARTY-LICENSES.md +2413 -0
- package/dist/_chunks/libs/@chevrotain/cst-dts-gen.mjs +30 -0
- package/dist/_chunks/libs/@hono/mcp.mjs +34 -0
- package/dist/_chunks/libs/@mantine/colors-generator.mjs +2 -2
- package/dist/_chunks/libs/@modelcontextprotocol/sdk.mjs +7 -36
- package/dist/_chunks/libs/@radix-ui/colors.mjs +1 -0
- package/dist/_chunks/libs/@smithy/is-array-buffer.mjs +1 -0
- package/dist/_chunks/libs/chevrotain-allstar.mjs +2 -2
- package/dist/_chunks/libs/chevrotain.mjs +35 -35
- package/dist/_chunks/libs/citty.mjs +1 -1
- package/dist/_chunks/libs/is-error-instance.mjs +1 -1
- package/dist/_chunks/libs/isexe.mjs +1 -0
- package/dist/_chunks/libs/khroma.mjs +1 -1
- package/dist/_chunks/libs/langium.mjs +18 -17
- package/dist/_chunks/libs/mdast-util-from-markdown.mjs +2 -2
- package/dist/_chunks/libs/mdast-util-gfm.mjs +9 -9
- package/dist/_chunks/libs/mdast-util-to-hast.mjs +7 -7
- package/dist/_chunks/libs/merge-error-cause.mjs +2 -2
- package/dist/_chunks/libs/micromark-extension-gfm.mjs +1 -1
- package/dist/_chunks/libs/mnemonist.mjs +1 -1
- package/dist/_chunks/libs/nano-spawn.mjs +3 -0
- package/dist/_chunks/libs/p-limit.mjs +1 -1
- package/dist/_chunks/libs/remeda.mjs +2 -1
- package/dist/_chunks/libs/safe-stringify.mjs +1 -1
- package/dist/_chunks/libs/ufo.mjs +1 -1
- package/dist/_chunks/libs/unified.mjs +1 -1
- package/dist/_chunks/libs/which.mjs +1 -0
- package/dist/_chunks/rolldown-runtime.mjs +1 -1
- package/dist/index.mjs +749 -69
- package/package.json +16 -16
- package/dist/_chunks/libs/@chevrotain/gast.mjs +0 -1
- package/dist/_chunks/libs/hono.mjs +0 -1
- package/dist/_chunks/libs/nanoid.mjs +0 -1
package/README.md
CHANGED
|
@@ -52,12 +52,22 @@ OPTIONS
|
|
|
52
52
|
## Available tools
|
|
53
53
|
|
|
54
54
|
- `list-projects`: List all LikeC4 projects in the workspace.
|
|
55
|
-
- `read-project-summary`: Project specification
|
|
55
|
+
- `read-project-summary`: Project specification, configuration, all elements, deployment nodes and views.
|
|
56
56
|
- `search-element`: Search elements and deployment nodes across all projects by id/title/kind/shape/tags/metadata.
|
|
57
57
|
- `read-element`: Full element details including relationships, includedInViews, deployedInstances, metadata and sourceLocation.
|
|
58
58
|
- `read-deployment`: Details of a deployment node or deployed instance.
|
|
59
59
|
- `read-view`: Full view details (nodes/edges) and sourceLocation.
|
|
60
60
|
- `find-relationships`: Direct and indirect relationships between two elements in a project.
|
|
61
|
+
- `query-graph`: Query element hierarchy (ancestors, descendants, siblings, children, parent) and relationships (incomers, outgoers).
|
|
62
|
+
- `query-incomers-graph`: Get complete graph of all upstream dependencies/producers (recursive incomers).
|
|
63
|
+
- `query-outgoers-graph`: Get complete graph of all downstream consumers/dependents (recursive outgoers).
|
|
64
|
+
- `query-by-metadata`: Search elements and deployment nodes by metadata key-value pairs with exact/contains/exists matching.
|
|
65
|
+
- `query-by-tags`: Search elements and deployment nodes by tags with boolean logic (allOf, anyOf, noneOf).
|
|
66
|
+
- `query-by-tag-pattern`: Search elements by tag patterns using prefix, contains, or suffix matching.
|
|
67
|
+
- `find-relationship-paths`: Discover all relationship chains between two elements with bounded BFS traversal. Supports `includeIndirect` to control implied relationships.
|
|
68
|
+
- `batch-read-elements`: Read full details for multiple elements in a single request.
|
|
69
|
+
- `subgraph-summary`: Summarize descendants of an element with depth, metadata, and relationship counts.
|
|
70
|
+
- `element-diff`: Compare two elements and show differences in properties, tags, metadata, and relationships.
|
|
61
71
|
- `open-view`: Opens the LikeC4 view (available if MCP is running in the editor)
|
|
62
72
|
|
|
63
73
|
## Getting help
|