@hanai/mcp-server-searxng 0.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.
- package/LICENSE +235 -0
- package/README.md +70 -0
- package/dist/entry-bun.js +30003 -0
- package/package.json +38 -0
package/package.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@hanai/mcp-server-searxng",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Self-hosted MCP server that wraps SearXNG's /search API as a single search tool, served over MCP Streamable HTTP.",
|
|
5
|
+
"license": "AGPL-3.0-or-later",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/hanai/mcp-server-searxng.git"
|
|
9
|
+
},
|
|
10
|
+
"type": "module",
|
|
11
|
+
"publishConfig": {
|
|
12
|
+
"access": "public"
|
|
13
|
+
},
|
|
14
|
+
"bin": {
|
|
15
|
+
"mcp-server-searxng": "dist/entry-bun.js"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"start": "bun run src/entry-bun.ts",
|
|
22
|
+
"test": "bun test",
|
|
23
|
+
"typecheck": "tsc --noEmit",
|
|
24
|
+
"build": "bun build ./src/entry-bun.ts --target=bun --outfile=dist/entry-bun.js --banner='#!/usr/bin/env bun' && chmod +x dist/entry-bun.js"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@modelcontextprotocol/server": "2.0.0-beta.1",
|
|
28
|
+
"@modelcontextprotocol/hono": "2.0.0-beta.1",
|
|
29
|
+
"hono": "^4.11.4",
|
|
30
|
+
"zod": "^4.2.0"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@cloudflare/workers-types": "^4.20240000.0",
|
|
34
|
+
"@types/bun": "^1.3.14",
|
|
35
|
+
"@types/node": "^22",
|
|
36
|
+
"typescript": "^5.6.0"
|
|
37
|
+
}
|
|
38
|
+
}
|