aura-components-mcp 1.5.2 → 1.5.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/README.md CHANGED
@@ -2,7 +2,11 @@
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/aura-components-mcp)](https://www.npmjs.com/package/aura-components-mcp) [![npm downloads](https://img.shields.io/npm/dm/aura-components-mcp)](https://www.npmjs.com/package/aura-components-mcp) [![license: MIT](https://img.shields.io/badge/license-MIT-green)](./LICENSE) [![node >= 18](https://img.shields.io/badge/node-%3E%3D18-brightgreen)](./package.json) [![MCP](https://img.shields.io/badge/MCP-stdio-blue)](./dist/server.js)
4
4
 
5
- I got tired of opening twenty Aura tabs every time I started a landing page. So I built the MCP server I wanted: every free thing on aura.build, one stdio call away, no account, no key, no browser.
5
+ <p align="center">
6
+ <a href="./flow/index.html"><img src="https://raw.githubusercontent.com/swastiksingh-dev/Aura-Components-MCP/main/assets/site-tour.gif" alt="aura-components-mcp demo: dark WebGL hero, 19 grouped tools, one-minute setup" width="100%"></a>
7
+ </p>
8
+
9
+ > I got tired of opening twenty Aura tabs every time I started a landing page. So I built the MCP server I wanted: every free thing on aura.build, one stdio call away, no account, no key, no browser.
6
10
 
7
11
  > **v1.5.0** — 20 tools. Search never empties (OR-token fallback + suggested queries), bulk-fetch with `aura_bulk_fetch` (`aura_bundle` alias),undle`, one-turn page builds with `aura_scaffold_page`, dark/light faceting, related items, legal asset install.
8
12
 
@@ -43,7 +47,7 @@ cd aura-components-mcp
43
47
  npm run build
44
48
  ```
45
49
 
46
- Then register it in your client. Full per-client steps live in [SETUP.md](./SETUP.md): Claude Code, Cursor, Codex, Windsurf, OpenCode, Cline, Roo Code, DeepSeek Harness, generic stdio. Launch site with animated explainer: open `flow/index.html` in a browser.
50
+ Then register it in your client. Full per-client steps live in [SETUP.md](./SETUP.md) Claude Code, Cursor, Codex, Windsurf, OpenCode, Cline, Roo Code, DeepSeek Harness, generic stdio — or click through the animated [launch site](./flow/index.html) ([how it works](./flow/how.html) · [tools](./flow/tools.html) · [compare vs official](./flow/compare.html) · [setup](./flow/setup.html) · [docs](./flow/docs.html)). Launch site with animated explainer: open `flow/index.html` in a browser.
47
51
 
48
52
  ```bash
49
53
  # Claude Code
package/dist/cli.cjs ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ require('./server.js');
package/dist/server.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // aura-components-mcp v1.0.0 — bundled (zero deps). Built by swastiksingh-dev.
2
+ // aura-components-mcp v1.5.4 — bundled (zero deps). Built by swastiksingh-dev.
3
3
 
4
4
  // ---- config.mjs ----
5
5
  // Module: config — one small interface (loadConfig) over all env parsing.
@@ -387,10 +387,10 @@ function createCatalog({ fetcher, config, now = () => Date.now(), facetsFn = nul
387
387
  }
388
388
 
389
389
  // ---- protocol.mjs ----
390
+ const SERVER_INFO = { name: "aura-components-mcp", version: "1.5.4" };
390
391
  // Module: protocol — stdio JSON-RPC framing + MCP handshake + error codes.
391
392
  // One interface: createSession(send) -> { dispatch(msg) }. No business logic.
392
393
 
393
- const SERVER_INFO = { name: "aura-components-mcp", version: "1.0.0" };
394
394
  const PROTOCOL_VERSION = "2024-11-05";
395
395
 
396
396
  const protocolFn_err = (code, message, data) => ({ code, message, ...(data === undefined ? {} : { data }) });
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "aura-components-mcp",
3
- "version": "1.5.2",
3
+ "version": "1.5.4",
4
4
  "description": "Free-only MCP server for the Aura (aura.build) public catalogue: 2,495 components, 187 skills, 30,688 assets, 725 design systems. No login. Built by swastiksingh-dev.",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "author": "swastiksingh-dev",
8
8
  "bin": {
9
- "aura-components-mcp": "dist/server.js"
9
+ "aura-components-mcp": "dist/cli.cjs"
10
10
  },
11
11
  "files": [
12
12
  "dist",