@sensegrep/mcp 1.6.0 → 1.6.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.
Files changed (2) hide show
  1. package/dist/server.js +1 -1
  2. package/package.json +5 -4
package/dist/server.js CHANGED
@@ -332,7 +332,7 @@ async function generateTools() {
332
332
  }
333
333
  const server = new Server({
334
334
  name: "sensegrep",
335
- version: "1.6.0",
335
+ version: "1.6.2",
336
336
  }, {
337
337
  capabilities: {
338
338
  tools: {},
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sensegrep/mcp",
3
3
  "mcpName": "io.github.Stahldavid/sensegrep",
4
- "version": "1.6.0",
4
+ "version": "1.6.2",
5
5
  "type": "module",
6
6
  "main": "./dist/server.js",
7
7
  "bin": {
@@ -16,14 +16,15 @@
16
16
  "scripts": {
17
17
  "build": "tsc -p tsconfig.json",
18
18
  "check": "tsc -p tsconfig.json --noEmit",
19
- "prepublishOnly": "node ../../build.js"
19
+ "prepublishOnly": "npm run build",
20
+ "postbuild": "node -e \"const fs = require('fs'); const p='dist/server.js'; const s='#!/usr/bin/env node\\n'; const c=fs.readFileSync(p,'utf8'); if (c.startsWith('#!')) { fs.writeFileSync(p, s + c.split(/\\r?\\n/).slice(1).join('\\n')); } else { fs.writeFileSync(p, s + c); }\""
20
21
  },
21
22
  "engines": {
22
23
  "node": ">=18"
23
24
  },
24
25
  "dependencies": {
25
26
  "@modelcontextprotocol/sdk": "^1.25.1",
26
- "@sensegrep/core": "^1.6.0",
27
+ "@sensegrep/core": "^1.6.2",
27
28
  "zod": "^4.2.1"
28
29
  },
29
30
  "publishConfig": {
@@ -32,7 +33,7 @@
32
33
  "license": "Apache-2.0",
33
34
  "repository": {
34
35
  "type": "git",
35
- "url": "https://github.com/Stahldavid/sensegrep.git"
36
+ "url": "git+https://github.com/Stahldavid/sensegrep.git"
36
37
  },
37
38
  "homepage": "https://github.com/Stahldavid/sensegrep",
38
39
  "bugs": {