@saastemly/undraw-mcp 1.0.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/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "@saastemly/undraw-mcp",
3
+ "type": "module",
4
+ "version": "1.0.0",
5
+ "description": "Offline unDraw MCP server — 698 open-source scene illustrations with keyword search, brand recolor & resize. Zero-config via npx, fully local.",
6
+ "keywords": [
7
+ "mcp",
8
+ "model-context-protocol",
9
+ "undraw",
10
+ "illustrations",
11
+ "svg",
12
+ "offline",
13
+ "claude",
14
+ "llm",
15
+ "ai-agent"
16
+ ],
17
+ "license": "MIT",
18
+ "author": "Saastemly",
19
+ "bin": {
20
+ "undraw-mcp": "dist/server.js"
21
+ },
22
+ "files": [
23
+ "dist/server.js",
24
+ "data/illustrations.db",
25
+ "README.md",
26
+ "UNDRAW_LICENSE.txt"
27
+ ],
28
+ "engines": {
29
+ "node": ">=20"
30
+ },
31
+ "publishConfig": {
32
+ "access": "public"
33
+ },
34
+ "scripts": {
35
+ "build:npm": "bun scripts/build-npm.ts",
36
+ "prepublishOnly": "bun scripts/build-npm.ts",
37
+ "build-index": "bun scripts/build-index.ts",
38
+ "dump-docs": "bun scripts/dump-docs.ts data/docs.jsonl",
39
+ "build-semantic": "bun run dump-docs && bash ../_embed.sh scripts/build-semantic-index.py data/docs.jsonl data/semantic_vectors.f32 data/semantic_names.json",
40
+ "reindex": "bun run build-index && bun run build-semantic",
41
+ "cli": "bun src/cli.ts",
42
+ "start": "bun src/server.ts"
43
+ },
44
+ "dependencies": {
45
+ "better-sqlite3": "^12.11.1"
46
+ },
47
+ "devDependencies": {
48
+ "@modelcontextprotocol/sdk": "^1.12.0",
49
+ "@types/better-sqlite3": "^7.6.13",
50
+ "zod": "^3.23.8"
51
+ }
52
+ }