@endday/search-mcp 1.0.1 → 1.1.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.
Files changed (3) hide show
  1. package/dist/search-mcp.js +75 -4710
  2. package/package.json +10 -15
  3. package/dist/index.js +0 -4724
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@endday/search-mcp",
3
- "version": "1.0.1",
3
+ "version": "1.1.0",
4
4
  "description": "Local MCP server for aggregated web search and content extraction",
5
5
  "type": "module",
6
- "main": "./dist/index.js",
6
+ "main": "./dist/search-mcp.js",
7
7
  "types": "./dist/index.d.ts",
8
8
  "publishConfig": {
9
9
  "access": "public"
@@ -11,18 +11,11 @@
11
11
  "bin": {
12
12
  "search-mcp": "dist/search-mcp.js"
13
13
  },
14
- "exports": {
15
- ".": {
16
- "types": "./dist/index.d.ts",
17
- "import": "./dist/index.js"
18
- },
19
- "./cli": "./dist/search-mcp.js"
20
- },
21
14
  "files": [
22
15
  "dist"
23
16
  ],
24
17
  "scripts": {
25
- "build": "node scripts/build-package.js",
18
+ "build": "node scripts/build-mcp.js",
26
19
  "prepack": "npm run build",
27
20
  "start": "node dist/search-mcp.js",
28
21
  "test": "node --test test",
@@ -56,16 +49,18 @@
56
49
  "url": "git+https://github.com/endday/search-mcp.git"
57
50
  },
58
51
  "dependencies": {
59
- "@modelcontextprotocol/sdk": "^1.0.4",
52
+ "@modelcontextprotocol/sdk": "^1.0.4"
53
+ },
54
+ "optionalDependencies": {
55
+ "impit": "^0.14.2"
56
+ },
57
+ "devDependencies": {
58
+ "esbuild": "^0.28.1",
60
59
  "@mozilla/readability": "^0.6.0",
61
- "impit": "^0.14.2",
62
60
  "linkedom": "^0.18.12",
63
61
  "node-html-parser": "^7.1.0"
64
62
  },
65
63
  "engines": {
66
64
  "node": ">=20.0.0"
67
- },
68
- "devDependencies": {
69
- "esbuild": "^0.28.1"
70
65
  }
71
66
  }