mcp-searxng 0.10.1 → 0.10.2
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/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -11,7 +11,7 @@ import { createConfigResource, createHelpResource } from "./resources.js";
|
|
|
11
11
|
import { createHttpServer } from "./http-server.js";
|
|
12
12
|
import { validateEnvironment as validateEnv } from "./error-handler.js";
|
|
13
13
|
// Use a static version string that will be updated by the version script
|
|
14
|
-
const packageVersion = "0.10.
|
|
14
|
+
const packageVersion = "0.10.2";
|
|
15
15
|
// Export the version for use in other modules
|
|
16
16
|
export { packageVersion };
|
|
17
17
|
// Global state for logging level
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-searxng",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.2",
|
|
4
|
+
"mcpName": "io.github.ihor-sokoliuk/mcp-searxng",
|
|
4
5
|
"description": "MCP server for SearXNG integration",
|
|
5
6
|
"license": "MIT",
|
|
6
7
|
"author": "Ihor Sokoliuk (https://github.com/ihor-sokoliuk)",
|
|
@@ -41,7 +42,7 @@
|
|
|
41
42
|
"bootstrap": "npm install && npm run build",
|
|
42
43
|
"inspector": "DANGEROUSLY_OMIT_AUTH=true npx @modelcontextprotocol/inspector node dist/index.js",
|
|
43
44
|
"lint": "eslint src __tests__",
|
|
44
|
-
"postversion": "TAG=$(node scripts/update-version.js | tail -1) && git add src/index.ts && git commit --amend --no-edit && git tag -f $TAG"
|
|
45
|
+
"postversion": "TAG=$(node scripts/update-version.js | tail -1) && git add src/index.ts .mcp/server.json && git commit --amend --no-edit && git tag -f $TAG"
|
|
45
46
|
},
|
|
46
47
|
"dependencies": {
|
|
47
48
|
"@modelcontextprotocol/sdk": "1.29.0",
|