@makitt.io/mds-mcp-server 0.2.5 → 0.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.
@@ -0,0 +1,7 @@
1
+ {
2
+ "mcpVersion": "0.3.1",
3
+ "catalogVersion": "0.2.0",
4
+ "catalogGenerated": "2026-06-22T15:24:13.718Z",
5
+ "catalogContentHash": "797b90e1a23a9a38",
6
+ "tokenCount": 359
7
+ }
@@ -60,7 +60,7 @@
60
60
  ### Toast 패턴
61
61
 
62
62
  ```ts
63
- import { toast } from '@makitt/mds';
63
+ import { toast } from '@makitt.io/mds';
64
64
 
65
65
  // 단순
66
66
  toast.success('저장됨');
@@ -94,7 +94,7 @@ toast.promise(saveOrder(), {
94
94
  ## 4. Banner 표준
95
95
 
96
96
  ```tsx
97
- import { Banner } from '@makitt/mds';
97
+ import { Banner } from '@makitt.io/mds';
98
98
 
99
99
  // inline 페이지 안 안내
100
100
  <Banner tone="info" variant="soft">
@@ -134,7 +134,7 @@ import { Banner } from '@makitt/mds';
134
134
  ### Compound API
135
135
 
136
136
  ```tsx
137
- import { Notification, useNotification } from '@makitt/mds';
137
+ import { Notification, useNotification } from '@makitt.io/mds';
138
138
 
139
139
  // (A) Drawer 안 알림 센터 (Slack inbox 패턴)
140
140
  <Drawer.Root>
@@ -104,7 +104,7 @@
104
104
  Imperative API:
105
105
 
106
106
  ```ts
107
- import { Modal } from '@makitt/mds';
107
+ import { Modal } from '@makitt.io/mds';
108
108
 
109
109
  // confirm
110
110
  const confirmed = await Modal.confirm({
@@ -130,7 +130,7 @@ Tailwind preset 의 `text-3xl` 가 `var(--text-3xl)` reference → 자동 mobile
130
130
  ### C. JS 분기 (큰 layout 변형 만)
131
131
 
132
132
  ```tsx
133
- import { useBreakpoint, useIsBreakpointUp } from '@makitt/mds';
133
+ import { useBreakpoint, useIsBreakpointUp } from '@makitt.io/mds';
134
134
 
135
135
  const bp = useBreakpoint();
136
136
  const isDesktop = useIsBreakpointUp('lg');