mcp-react-toolkit 1.3.0 → 1.3.1
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 +4 -4
- package/package.json +11 -2
package/README.md
CHANGED
|
@@ -53,12 +53,12 @@ client/ React 19 showcase SPA — tool catalog, workflow demos, animated flo
|
|
|
53
53
|
|
|
54
54
|
## Companion package
|
|
55
55
|
|
|
56
|
-
[
|
|
56
|
+
[`code-graph-indexer`](https://www.npmjs.com/package/code-graph-indexer) — a standalone code-intelligence engine that indexes any TS / React / Next.js repo into a queryable **code graph** (files · components · functions, and the `imports`/`renders`/`calls`/`references`/`depends-on` edges between them) and answers structural questions — *who renders this, who calls this, find references, blast radius, cycles, dead code* — plus **semantic search** by meaning. Use it over a CLI, an MCP server, an HTTP/WS server, and a 3D web explorer. Separate package, same family:
|
|
57
57
|
|
|
58
58
|
```bash
|
|
59
|
-
npx
|
|
60
|
-
npx
|
|
61
|
-
npx
|
|
59
|
+
npx code-graph-indexer mcp # stdio MCP server (13 tools)
|
|
60
|
+
npx code-graph-indexer index --root . # one-shot index → .code-graph/graph.json
|
|
61
|
+
npx code-graph-indexer query who-renders --id "cmp:src/Button.tsx#Button" --root .
|
|
62
62
|
```
|
|
63
63
|
|
|
64
64
|
---
|
package/package.json
CHANGED
|
@@ -1,9 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-react-toolkit",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"mcpName": "io.github.Nishant-Chaudhary5338/mcp-react-toolkit",
|
|
5
5
|
"description": "17 MCP servers for React + TypeScript development automation — component scaffolding, dep auditing, WCAG checking, test generation, TypeScript enforcement, render analysis, performance audit, Lighthouse, Storybook generation, legacy app analysis, component review/fix, and monorepo management.",
|
|
6
|
-
"keywords": [
|
|
6
|
+
"keywords": [
|
|
7
|
+
"mcp",
|
|
8
|
+
"mcp-server",
|
|
9
|
+
"model-context-protocol",
|
|
10
|
+
"react",
|
|
11
|
+
"typescript",
|
|
12
|
+
"developer-tools",
|
|
13
|
+
"claude",
|
|
14
|
+
"ai-tools"
|
|
15
|
+
],
|
|
7
16
|
"author": "Nishant Chaudhary <nishantchaudhary.dev@gmail.com>",
|
|
8
17
|
"license": "MIT",
|
|
9
18
|
"repository": {
|