@multiplist/mcp-server 0.13.5

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.
Files changed (3) hide show
  1. package/README.md +131 -0
  2. package/mcp-server.js +89602 -0
  3. package/package.json +41 -0
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "@multiplist/mcp-server",
3
+ "version": "0.13.5",
4
+ "type": "module",
5
+ "license": "MIT",
6
+ "description": "Multiplist MCP Server — semantic memory, extraction, and workspace coordination via Model Context Protocol",
7
+ "keywords": [
8
+ "mcp",
9
+ "model-context-protocol",
10
+ "multiplist",
11
+ "semantic-memory",
12
+ "knowledge-vault",
13
+ "chatgpt",
14
+ "claude"
15
+ ],
16
+ "homepage": "https://multiplist.ai",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/mysticquarterly/multiplist-v12"
20
+ },
21
+ "bin": "./mcp-server.js",
22
+ "engines": {
23
+ "node": ">=20.16.0"
24
+ },
25
+ "scripts": {
26
+ "dev": "NODE_ENV=development tsx server/index.ts",
27
+ "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
+ "build:mcp": "esbuild bin/mcp-stdio.ts --platform=node --packages=external --bundle --format=esm --outdir=dist/bin",
29
+ "start": "NODE_ENV=production node dist/index.js",
30
+ "start:mcp": "node dist/bin/mcp-stdio.js",
31
+ "mcp:stdio": "tsx bin/mcp-stdio.ts",
32
+ "check": "tsc",
33
+ "db:push": "drizzle-kit push"
34
+ },
35
+ "dependencies": {},
36
+ "devDependencies": {},
37
+ "files": [
38
+ "mcp-server.js",
39
+ "README.md"
40
+ ]
41
+ }