@lerpa/mcp-server 0.1.0 → 0.2.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/dist/index.js CHANGED
@@ -47,7 +47,7 @@ function firstExisting(...candidates) {
47
47
  // source of truth for list/get/search. component-catalog.json adds human
48
48
  // descriptions + category tags.
49
49
  const REGISTRY_JSON = firstExisting(path.join(PKG_ROOT, "registry", "registry.json"), path.join(REPO_ROOT, "packages", "registry", "generated", "registry.json"));
50
- const CATALOG_JSON = firstExisting(path.join(PKG_ROOT, "registry", "component-catalog.json"), path.join(REPO_ROOT, "apps", "docs", "src", "data", "component-catalog.json"));
50
+ const CATALOG_JSON = firstExisting(path.join(PKG_ROOT, "registry", "component-catalog.json"), path.join(REPO_ROOT, "packages", "registry", "generated", "component-catalog.json"), path.join(REPO_ROOT, "apps", "docs", "src", "data", "component-catalog.json"));
51
51
  // ---------------------------------------------------------------------------
52
52
  // Lazy-loaded data (only read once per process).
53
53
  // ---------------------------------------------------------------------------
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lerpa/mcp-server",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "private": false,
5
5
  "description": "Model Context Protocol server exposing the Lerpa UI registry to AI agents (Claude Code, Cursor, v0, Continue).",
6
6
  "repository": {