@staffbase/design-mcp 19.0.0 → 19.0.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.
@@ -1144,6 +1144,20 @@
1144
1144
  "leave"
1145
1145
  ]
1146
1146
  },
1147
+ {
1148
+ "name": "long-text",
1149
+ "componentName": "LongTextIcon",
1150
+ "tags": [
1151
+ "text",
1152
+ "paragraph",
1153
+ "multiline",
1154
+ "multi-line",
1155
+ "textarea",
1156
+ "description",
1157
+ "essay",
1158
+ "long answer"
1159
+ ]
1160
+ },
1147
1161
  {
1148
1162
  "name": "magic-wand",
1149
1163
  "componentName": "MagicWandIcon",
@@ -1851,6 +1865,18 @@
1851
1865
  "export"
1852
1866
  ]
1853
1867
  },
1868
+ {
1869
+ "name": "short-text",
1870
+ "componentName": "ShortTextIcon",
1871
+ "tags": [
1872
+ "text",
1873
+ "single line",
1874
+ "input",
1875
+ "short answer",
1876
+ "field",
1877
+ "title"
1878
+ ]
1879
+ },
1854
1880
  {
1855
1881
  "name": "shrink",
1856
1882
  "componentName": "ShrinkIcon",
@@ -1870,6 +1896,21 @@
1870
1896
  "componentName": "SidebarRightIcon",
1871
1897
  "tags": []
1872
1898
  },
1899
+ {
1900
+ "name": "single-choice-question",
1901
+ "componentName": "SingleChoiceQuestionIcon",
1902
+ "tags": [
1903
+ "radio",
1904
+ "single select",
1905
+ "single choice",
1906
+ "choice",
1907
+ "question",
1908
+ "survey",
1909
+ "poll",
1910
+ "options",
1911
+ "radio button"
1912
+ ]
1913
+ },
1873
1914
  {
1874
1915
  "name": "slider-question",
1875
1916
  "componentName": "SliderQuestionIcon",
@@ -1,4 +1,4 @@
1
1
  {
2
- "generatedAt": "2026-07-01T08:41:27.535Z",
3
- "designVersion": "19.0.0"
2
+ "generatedAt": "2026-07-04T21:25:03.943Z",
3
+ "designVersion": "19.0.1"
4
4
  }
package/package.json CHANGED
@@ -1,17 +1,8 @@
1
1
  {
2
2
  "name": "@staffbase/design-mcp",
3
- "version": "19.0.0",
3
+ "version": "19.0.1",
4
4
  "description": "Model Context Protocol server for the Staffbase Design System: exposes components, tokens, icons, and docs to AI coding agents.",
5
5
  "type": "module",
6
- "scripts": {
7
- "build": "tsup && pnpm run build:data",
8
- "build:data": "tsx scripts/build-data.ts",
9
- "dev": "pnpm run build:data && tsx src/server.ts",
10
- "lint": "eslint --cache .",
11
- "pretest": "pnpm run build:data",
12
- "test": "vitest run",
13
- "type:check": "tsc -p tsconfig.json"
14
- },
15
6
  "bin": {
16
7
  "staffbase-design-mcp": "./dist/server.js"
17
8
  },
@@ -33,16 +24,25 @@
33
24
  "zod": "^4.4.3"
34
25
  },
35
26
  "devDependencies": {
36
- "@repo/eslint-config": "workspace:*",
37
- "@staffbase/design": "workspace:*",
38
27
  "@types/node": "^25.9.2",
39
28
  "eslint": "^10.4.1",
40
29
  "tsup": "^8.3.5",
41
30
  "tsx": "^4.22.4",
42
31
  "typescript": "^5.9.3",
43
- "vitest": "^4.1.8"
32
+ "vitest": "^4.1.8",
33
+ "@staffbase/design": "19.0.1",
34
+ "@repo/eslint-config": "0.0.0"
44
35
  },
45
36
  "publishConfig": {
46
37
  "access": "public"
38
+ },
39
+ "scripts": {
40
+ "build": "tsup && pnpm run build:data",
41
+ "build:data": "tsx scripts/build-data.ts",
42
+ "dev": "pnpm run build:data && tsx src/server.ts",
43
+ "lint": "eslint --cache .",
44
+ "pretest": "pnpm run build:data",
45
+ "test": "vitest run",
46
+ "type:check": "tsc -p tsconfig.json"
47
47
  }
48
- }
48
+ }