aura-components-mcp 1.5.3 → 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/dist/server.js +2 -2
- package/package.json +1 -1
package/dist/server.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
// aura-components-mcp v1.
|
|
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aura-components-mcp",
|
|
3
|
-
"version": "1.5.
|
|
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",
|