@corva/ui 3.71.0-3 → 3.71.0-4
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/MCP_README.md +5 -4
- package/mcp-server/server.mjs +39 -33
- package/package.json +3 -2
package/MCP_README.md
CHANGED
|
@@ -31,7 +31,7 @@ supports Claude Code, Cursor, and Codex CLI.
|
|
|
31
31
|
- `list_corva_ui` - List all available items by category
|
|
32
32
|
- `get_constants_docs` - Get constants documentation (values, namespaces, usage)
|
|
33
33
|
- `get_client_docs` - Get API client documentation (methods, endpoints)
|
|
34
|
-
- `get_diagnostics` - Get MCP server health metrics (
|
|
34
|
+
- `get_diagnostics` - Get MCP server health metrics (server version, uptime, memory, request stats, telemetry status, project identity, registered prompts)
|
|
35
35
|
- `submit_feedback` - Send feedback about `@corva/ui` or this MCP server to the maintainers (docs gaps, wrong/missing
|
|
36
36
|
props, search misses). The assistant can also call this on its own when it hits a gap.
|
|
37
37
|
- `get_migration_guide` - Get the component migration manifest (source -> target pairs, tiers, per-prop transforms)
|
|
@@ -102,8 +102,9 @@ mode (inside the `@corva/ui` repo itself) is auto-detected from `package.json` a
|
|
|
102
102
|
/mcp__corva-ui__feedback the Button docs are missing the `variant` prop
|
|
103
103
|
```
|
|
104
104
|
|
|
105
|
-
- `healthcheck` — Check the health of this MCP server: uptime, memory usage, request statistics,
|
|
106
|
-
project identity. Runs the `get_diagnostics` tool and presents the report.
|
|
105
|
+
- `healthcheck` — Check the health of this MCP server: server version, uptime, memory usage, request statistics,
|
|
106
|
+
telemetry status, project identity, and registered prompts. Runs the `get_diagnostics` tool and presents the report.
|
|
107
|
+
**Takes no arguments.**
|
|
107
108
|
|
|
108
109
|
**Example invocation** (Claude Code):
|
|
109
110
|
|
|
@@ -666,6 +667,6 @@ any telemetry configuration is read.
|
|
|
666
667
|
### Does this affect my application bundle or runtime?
|
|
667
668
|
|
|
668
669
|
No. The MCP server adds ~2 MB to the published `@corva/ui` npm package (bundled server, setup CLI, and pre-generated
|
|
669
|
-
documentation data). These files live in `
|
|
670
|
+
documentation data). These files live in `node_modules/@corva/ui/mcp-server/` and are only used when running the CLI binaries (
|
|
670
671
|
`corva-ui-mcp`, `corva-ui-mcp-setup`). Consuming app bundlers resolve imports from the library's ESM/CJS entry points,
|
|
671
672
|
which don't reference MCP files — so they are never included in application bundles or executed at runtime.
|