@multiplist/mcp-server 0.13.5 → 0.14.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/{mcp-server.js → dist/bin/mcp-stdio.js} +92561 -83649
- package/package.json +201 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@multiplist/mcp-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Multiplist MCP Server — semantic memory, extraction, and workspace coordination via Model Context Protocol",
|
|
@@ -18,24 +18,217 @@
|
|
|
18
18
|
"type": "git",
|
|
19
19
|
"url": "https://github.com/mysticquarterly/multiplist-v12"
|
|
20
20
|
},
|
|
21
|
-
"bin": "./mcp-
|
|
21
|
+
"bin": "./dist/bin/mcp-stdio.js",
|
|
22
22
|
"engines": {
|
|
23
23
|
"node": ">=20.16.0"
|
|
24
24
|
},
|
|
25
|
+
"files": [
|
|
26
|
+
"dist/bin/",
|
|
27
|
+
"README.md"
|
|
28
|
+
],
|
|
25
29
|
"scripts": {
|
|
26
30
|
"dev": "NODE_ENV=development tsx server/index.ts",
|
|
27
31
|
"build": "vite build && esbuild server/index.ts --platform=node --packages=external --bundle --format=esm --outdir=dist && esbuild bin/mcp-stdio.ts --platform=node --packages=external --bundle --format=esm --outdir=dist/bin",
|
|
28
32
|
"build:mcp": "esbuild bin/mcp-stdio.ts --platform=node --packages=external --bundle --format=esm --outdir=dist/bin",
|
|
33
|
+
"build:mcp:bundle": "esbuild bin/mcp-stdio.ts --platform=node --bundle --format=esm --outdir=dist/bin --external:pg-native --external:bufferutil --external:utf-8-validate",
|
|
29
34
|
"start": "NODE_ENV=production node dist/index.js",
|
|
30
35
|
"start:mcp": "node dist/bin/mcp-stdio.js",
|
|
31
36
|
"mcp:stdio": "tsx bin/mcp-stdio.ts",
|
|
32
37
|
"check": "tsc",
|
|
33
38
|
"db:push": "drizzle-kit push"
|
|
34
39
|
},
|
|
35
|
-
"dependencies": {
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@ai-sdk/react": "^3.0.161",
|
|
42
|
+
"@anthropic-ai/sdk": "^0.71.2",
|
|
43
|
+
"@ariakit/react": "^0.4.25",
|
|
44
|
+
"@diceui/combobox": "^1.2.2",
|
|
45
|
+
"@diceui/listbox": "^0.2.0",
|
|
46
|
+
"@emoji-mart/data": "^1.2.1",
|
|
47
|
+
"@faker-js/faker": "^10.4.0",
|
|
48
|
+
"@floating-ui/react-dom": "^2.1.6",
|
|
49
|
+
"@hello-pangea/dnd": "^18.0.1",
|
|
50
|
+
"@hookform/resolvers": "^3.10.0",
|
|
51
|
+
"@jridgewell/trace-mapping": "^0.3.25",
|
|
52
|
+
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
53
|
+
"@neondatabase/serverless": "^0.10.4",
|
|
54
|
+
"@platejs/ai": "^52.3.22",
|
|
55
|
+
"@platejs/autoformat": "^52.3.10",
|
|
56
|
+
"@platejs/basic-nodes": "^52.3.10",
|
|
57
|
+
"@platejs/basic-styles": "^52.3.10",
|
|
58
|
+
"@platejs/callout": "^52.3.10",
|
|
59
|
+
"@platejs/caption": "^52.3.10",
|
|
60
|
+
"@platejs/code-block": "^52.3.16",
|
|
61
|
+
"@platejs/code-drawing": "^52.3.10",
|
|
62
|
+
"@platejs/combobox": "^52.3.10",
|
|
63
|
+
"@platejs/comment": "^52.3.10",
|
|
64
|
+
"@platejs/date": "^52.3.10",
|
|
65
|
+
"@platejs/dnd": "^52.3.16",
|
|
66
|
+
"@platejs/docx": "^52.3.10",
|
|
67
|
+
"@platejs/docx-io": "^52.3.10",
|
|
68
|
+
"@platejs/emoji": "^52.3.10",
|
|
69
|
+
"@platejs/excalidraw": "^52.3.10",
|
|
70
|
+
"@platejs/floating": "^52.3.10",
|
|
71
|
+
"@platejs/indent": "^52.3.10",
|
|
72
|
+
"@platejs/juice": "^52.3.10",
|
|
73
|
+
"@platejs/layout": "^52.3.10",
|
|
74
|
+
"@platejs/link": "^52.3.17",
|
|
75
|
+
"@platejs/list": "^52.3.10",
|
|
76
|
+
"@platejs/markdown": "^52.3.22",
|
|
77
|
+
"@platejs/math": "^52.3.10",
|
|
78
|
+
"@platejs/media": "^52.3.10",
|
|
79
|
+
"@platejs/mention": "^52.3.10",
|
|
80
|
+
"@platejs/resizable": "^52.3.10",
|
|
81
|
+
"@platejs/selection": "^52.3.10",
|
|
82
|
+
"@platejs/slash-command": "^52.3.10",
|
|
83
|
+
"@platejs/suggestion": "^52.3.10",
|
|
84
|
+
"@platejs/table": "^52.3.20",
|
|
85
|
+
"@platejs/toc": "^52.3.10",
|
|
86
|
+
"@platejs/toggle": "^52.3.10",
|
|
87
|
+
"@postiz/node": "^1.0.8",
|
|
88
|
+
"@radix-ui/react-accordion": "^1.2.4",
|
|
89
|
+
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
90
|
+
"@radix-ui/react-aspect-ratio": "^1.1.3",
|
|
91
|
+
"@radix-ui/react-avatar": "^1.1.11",
|
|
92
|
+
"@radix-ui/react-checkbox": "^1.3.3",
|
|
93
|
+
"@radix-ui/react-collapsible": "^1.1.4",
|
|
94
|
+
"@radix-ui/react-context-menu": "^2.2.16",
|
|
95
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
96
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
97
|
+
"@radix-ui/react-hover-card": "^1.1.7",
|
|
98
|
+
"@radix-ui/react-icons": "^1.3.2",
|
|
99
|
+
"@radix-ui/react-label": "^2.1.3",
|
|
100
|
+
"@radix-ui/react-menubar": "^1.1.7",
|
|
101
|
+
"@radix-ui/react-navigation-menu": "^1.2.6",
|
|
102
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
103
|
+
"@radix-ui/react-progress": "^1.1.3",
|
|
104
|
+
"@radix-ui/react-radio-group": "^1.2.4",
|
|
105
|
+
"@radix-ui/react-scroll-area": "^1.2.4",
|
|
106
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
107
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
108
|
+
"@radix-ui/react-slider": "^1.2.4",
|
|
109
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
110
|
+
"@radix-ui/react-switch": "^1.1.4",
|
|
111
|
+
"@radix-ui/react-tabs": "^1.1.4",
|
|
112
|
+
"@radix-ui/react-toast": "^1.2.7",
|
|
113
|
+
"@radix-ui/react-toggle": "^1.1.3",
|
|
114
|
+
"@radix-ui/react-toggle-group": "^1.1.3",
|
|
115
|
+
"@radix-ui/react-toolbar": "^1.1.11",
|
|
116
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
117
|
+
"@tanstack/react-query": "^5.60.5",
|
|
118
|
+
"@tiptap/extension-code-block-lowlight": "^3.15.3",
|
|
119
|
+
"@tiptap/extension-color": "^3.15.3",
|
|
120
|
+
"@tiptap/extension-image": "^3.15.3",
|
|
121
|
+
"@tiptap/extension-placeholder": "^3.15.3",
|
|
122
|
+
"@tiptap/extension-text-style": "^3.15.3",
|
|
123
|
+
"@tiptap/extension-typography": "^3.15.3",
|
|
124
|
+
"@tiptap/pm": "^3.15.3",
|
|
125
|
+
"@tiptap/react": "^3.15.3",
|
|
126
|
+
"@tiptap/starter-kit": "^3.15.3",
|
|
127
|
+
"@types/bcrypt": "^6.0.0",
|
|
128
|
+
"@types/cors": "^2.8.19",
|
|
129
|
+
"@types/memoizee": "^0.4.12",
|
|
130
|
+
"@types/multer": "^2.0.0",
|
|
131
|
+
"@types/pg": "^8.16.0",
|
|
132
|
+
"@udecode/cn": "^52.3.4",
|
|
133
|
+
"@udecode/plate": "^48.0.5",
|
|
134
|
+
"@udecode/plate-basic-marks": "^48.0.0",
|
|
135
|
+
"@udecode/plate-block-quote": "^48.0.0",
|
|
136
|
+
"@udecode/plate-heading": "^48.0.0",
|
|
137
|
+
"@udecode/plate-list": "^48.0.0",
|
|
138
|
+
"@uploadthing/react": "^7.3.3",
|
|
139
|
+
"ai": "^6.0.159",
|
|
140
|
+
"bcrypt": "^6.0.0",
|
|
141
|
+
"class-variance-authority": "^0.7.1",
|
|
142
|
+
"clsx": "^2.1.1",
|
|
143
|
+
"cmdk": "^1.1.1",
|
|
144
|
+
"compromise": "^14.14.4",
|
|
145
|
+
"connect-pg-simple": "^10.0.0",
|
|
146
|
+
"cors": "^2.8.6",
|
|
147
|
+
"date-fns": "^3.6.0",
|
|
148
|
+
"dedent": "^1.0.0",
|
|
149
|
+
"drizzle-orm": "^0.39.1",
|
|
150
|
+
"drizzle-zod": "^0.7.0",
|
|
151
|
+
"embla-carousel-react": "^8.6.0",
|
|
152
|
+
"express": "^4.21.2",
|
|
153
|
+
"express-session": "^1.18.1",
|
|
154
|
+
"framer-motion": "^11.13.1",
|
|
155
|
+
"html2canvas-pro": "^2.0.2",
|
|
156
|
+
"input-otp": "^1.4.2",
|
|
157
|
+
"little-date": "^1.2.1",
|
|
158
|
+
"lodash": "^4.18.1",
|
|
159
|
+
"lowlight": "^3.3.0",
|
|
160
|
+
"lucide-react": "^0.453.0",
|
|
161
|
+
"mammoth": "^1.11.0",
|
|
162
|
+
"memoizee": "^0.4.17",
|
|
163
|
+
"memorystore": "^1.6.7",
|
|
164
|
+
"motion": "^12.33.0",
|
|
165
|
+
"multer": "^2.0.2",
|
|
166
|
+
"next-themes": "^0.4.6",
|
|
167
|
+
"openai": "^6.7.0",
|
|
168
|
+
"openid-client": "^6.8.1",
|
|
169
|
+
"passport": "^0.7.0",
|
|
170
|
+
"passport-local": "^1.0.0",
|
|
171
|
+
"pdf-lib": "^1.17.1",
|
|
172
|
+
"pdf-parse": "^2.4.5",
|
|
173
|
+
"pg": "^8.18.0",
|
|
174
|
+
"platejs": "^52.3.21",
|
|
175
|
+
"playwright": "^1.58.2",
|
|
176
|
+
"react": "^18.3.1",
|
|
177
|
+
"react-day-picker": "^9.14.0",
|
|
178
|
+
"react-dnd": "^16.0.1",
|
|
179
|
+
"react-dnd-html5-backend": "^16.0.1",
|
|
180
|
+
"react-dom": "^18.3.1",
|
|
181
|
+
"react-hook-form": "^7.55.0",
|
|
182
|
+
"react-icons": "^5.4.0",
|
|
183
|
+
"react-lite-youtube-embed": "^3.5.1",
|
|
184
|
+
"react-markdown": "^10.1.0",
|
|
185
|
+
"react-medium-image-zoom": "^5.4.0",
|
|
186
|
+
"react-player": "^3.3.1",
|
|
187
|
+
"react-textarea-autosize": "^8.5.9",
|
|
188
|
+
"react-tweet": "^3.3.0",
|
|
189
|
+
"recharts": "^2.15.2",
|
|
190
|
+
"rehype-highlight": "^7.0.2",
|
|
191
|
+
"remark-gfm": "^4.0.1",
|
|
192
|
+
"remark-math": "^6.0.0",
|
|
193
|
+
"sonner": "^2.0.7",
|
|
194
|
+
"tailwind-merge": "^2.6.0",
|
|
195
|
+
"tailwind-scrollbar-hide": "^4.0.0",
|
|
196
|
+
"tailwindcss-animate": "^1.0.7",
|
|
197
|
+
"tw-animate-css": "^1.2.5",
|
|
198
|
+
"uploadthing": "^7.7.4",
|
|
199
|
+
"use-file-picker": "^2.1.2",
|
|
200
|
+
"vaul": "^1.1.2",
|
|
201
|
+
"wouter": "^3.3.5",
|
|
202
|
+
"ws": "^8.18.0",
|
|
203
|
+
"zod": "^3.25.76",
|
|
204
|
+
"zod-validation-error": "^3.4.0"
|
|
205
|
+
},
|
|
206
|
+
"devDependencies": {
|
|
207
|
+
"@replit/vite-plugin-cartographer": "^0.4.1",
|
|
208
|
+
"@replit/vite-plugin-dev-banner": "^0.1.1",
|
|
209
|
+
"@replit/vite-plugin-runtime-error-modal": "^0.0.3",
|
|
210
|
+
"@tailwindcss/typography": "^0.5.15",
|
|
211
|
+
"@tailwindcss/vite": "^4.1.3",
|
|
212
|
+
"@types/connect-pg-simple": "^7.0.3",
|
|
213
|
+
"@types/express": "4.17.21",
|
|
214
|
+
"@types/express-session": "^1.18.0",
|
|
215
|
+
"@types/node": "20.16.11",
|
|
216
|
+
"@types/passport": "^1.0.16",
|
|
217
|
+
"@types/passport-local": "^1.0.38",
|
|
218
|
+
"@types/react": "^18.3.11",
|
|
219
|
+
"@types/react-dom": "^18.3.1",
|
|
220
|
+
"@types/ws": "^8.5.13",
|
|
221
|
+
"@vitejs/plugin-react": "^4.7.0",
|
|
222
|
+
"autoprefixer": "^10.4.20",
|
|
223
|
+
"drizzle-kit": "^0.31.4",
|
|
224
|
+
"esbuild": "^0.25.0",
|
|
225
|
+
"postcss": "^8.4.47",
|
|
226
|
+
"tailwindcss": "^3.4.17",
|
|
227
|
+
"tsx": "^4.20.5",
|
|
228
|
+
"typescript": "5.6.3",
|
|
229
|
+
"vite": "^5.4.20"
|
|
230
|
+
},
|
|
231
|
+
"optionalDependencies": {
|
|
232
|
+
"bufferutil": "^4.0.8"
|
|
233
|
+
}
|
|
41
234
|
}
|