@baseline-ui/mcp 2.0.0 → 2.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/CHANGELOG.md +8 -0
- package/README.md +21 -4
- package/dist/chunk-ZSPBMEL5.js +36789 -0
- package/dist/index.js +1 -35761
- package/dist/{index.cjs → server.cjs} +1081 -54
- package/dist/server.d.ts +5 -0
- package/dist/server.js +1 -0
- package/package.json +15 -2
- package/sbom.json +6 -6
- package/dist/index.d.cts +0 -1
package/dist/server.d.ts
ADDED
package/dist/server.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export{a as createServer}from'./chunk-ZSPBMEL5.js';
|
package/package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@baseline-ui/mcp",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "MCP server for Baseline UI design system documentation",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"exports": {
|
|
7
|
+
"./server": {
|
|
8
|
+
"import": {
|
|
9
|
+
"types": "./dist/server.d.ts",
|
|
10
|
+
"default": "./dist/server.js"
|
|
11
|
+
},
|
|
12
|
+
"require": {
|
|
13
|
+
"types": "./dist/server.d.cts",
|
|
14
|
+
"default": "./dist/server.cjs"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"./package.json": "./package.json"
|
|
18
|
+
},
|
|
6
19
|
"dependencies": {
|
|
7
20
|
"@modelcontextprotocol/sdk": "1.29.0",
|
|
8
21
|
"fast-glob": "^3.3.3",
|
|
@@ -35,7 +48,7 @@
|
|
|
35
48
|
"sbom.json"
|
|
36
49
|
],
|
|
37
50
|
"scripts": {
|
|
38
|
-
"build": "./scripts/build-data.sh && tsup
|
|
51
|
+
"build": "./scripts/build-data.sh && tsup"
|
|
39
52
|
},
|
|
40
53
|
"bin": {
|
|
41
54
|
"mcp": "dist/index.js"
|
package/sbom.json
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
|
|
3
3
|
"bomFormat": "CycloneDX",
|
|
4
4
|
"specVersion": "1.6",
|
|
5
|
-
"serialNumber": "urn:uuid:
|
|
5
|
+
"serialNumber": "urn:uuid:1cbb7201-fb3c-49a7-bdff-fdcab4671f59",
|
|
6
6
|
"version": 1,
|
|
7
7
|
"metadata": {
|
|
8
|
-
"timestamp": "2026-08-
|
|
8
|
+
"timestamp": "2026-08-17T22:36:19.907Z",
|
|
9
9
|
"lifecycles": [
|
|
10
10
|
{
|
|
11
11
|
"phase": "pre-build"
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"component": {
|
|
24
24
|
"type": "library",
|
|
25
25
|
"name": "@baseline-ui/mcp",
|
|
26
|
-
"version": "2.
|
|
27
|
-
"purl": "pkg:npm/@baseline-ui/mcp@2.
|
|
28
|
-
"bom-ref": "pkg:npm/@baseline-ui/mcp@2.
|
|
26
|
+
"version": "2.2.0",
|
|
27
|
+
"purl": "pkg:npm/@baseline-ui/mcp@2.2.0",
|
|
28
|
+
"bom-ref": "pkg:npm/@baseline-ui/mcp@2.2.0",
|
|
29
29
|
"licenses": [
|
|
30
30
|
{
|
|
31
31
|
"license": {
|
|
@@ -2134,7 +2134,7 @@
|
|
|
2134
2134
|
],
|
|
2135
2135
|
"dependencies": [
|
|
2136
2136
|
{
|
|
2137
|
-
"ref": "pkg:npm/@baseline-ui/mcp@2.
|
|
2137
|
+
"ref": "pkg:npm/@baseline-ui/mcp@2.2.0",
|
|
2138
2138
|
"dependsOn": [
|
|
2139
2139
|
"pkg:npm/%40modelcontextprotocol/sdk@1.29.0",
|
|
2140
2140
|
"pkg:npm/fast-glob@3.3.3",
|
package/dist/index.d.cts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|