@sensegrep/mcp 0.1.19 → 0.1.20

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/README.md +37 -37
  2. package/package.json +48 -40
package/README.md CHANGED
@@ -1,37 +1,37 @@
1
- # @sensegrep/mcp
2
-
3
- MCP server exposing sensegrep capabilities to AI coding assistants.
4
-
5
- ## Install
6
-
7
- ```bash
8
- npm install -g @sensegrep/mcp
9
- ```
10
-
11
- ## MCP Configuration
12
-
13
- ```json
14
- {
15
- "mcpServers": {
16
- "sensegrep": {
17
- "command": "sensegrep-mcp",
18
- "env": {
19
- "SENSEGREP_ROOT": "/path/to/project"
20
- }
21
- }
22
- }
23
- }
24
- ```
25
-
26
- ## Tools
27
-
28
- - `sensegrep.search`
29
- - `sensegrep.index`
30
- - `sensegrep.stats`
31
- - `sensegrep.detect_duplicates`
32
- - `sensegrep.languages`
33
-
34
- ## Documentation
35
-
36
- - MCP setup: https://github.com/Stahldavid/sensegrep/blob/main/docs/mcp-setup.md
37
- - Repository: https://github.com/Stahldavid/sensegrep
1
+ # @sensegrep/mcp
2
+
3
+ MCP server exposing sensegrep capabilities to AI coding assistants.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install -g @sensegrep/mcp
9
+ ```
10
+
11
+ ## MCP Configuration
12
+
13
+ ```json
14
+ {
15
+ "mcpServers": {
16
+ "sensegrep": {
17
+ "command": "sensegrep-mcp",
18
+ "env": {
19
+ "SENSEGREP_ROOT": "/path/to/project"
20
+ }
21
+ }
22
+ }
23
+ }
24
+ ```
25
+
26
+ ## Tools
27
+
28
+ - `sensegrep.search`
29
+ - `sensegrep.index`
30
+ - `sensegrep.stats`
31
+ - `sensegrep.detect_duplicates`
32
+ - `sensegrep.languages`
33
+
34
+ ## Documentation
35
+
36
+ - MCP setup: https://github.com/Stahldavid/sensegrep/blob/main/docs/mcp-setup.md
37
+ - Repository: https://github.com/Stahldavid/sensegrep
package/package.json CHANGED
@@ -1,40 +1,48 @@
1
- {
2
- "name": "@sensegrep/mcp",
3
- "version": "0.1.19",
4
- "type": "module",
5
- "main": "./dist/server.js",
6
- "bin": {
7
- "sensegrep-mcp": "dist/server.js"
8
- },
9
- "types": "./dist/server.d.ts",
10
- "files": [
11
- "dist",
12
- "README.md",
13
- "LICENSE"
14
- ],
15
- "scripts": {
16
- "build": "tsc -p tsconfig.json",
17
- "check": "tsc -p tsconfig.json --noEmit",
18
- "prepublishOnly": "node ../../build.js"
19
- },
20
- "engines": {
21
- "node": ">=18"
22
- },
23
- "dependencies": {
24
- "@modelcontextprotocol/sdk": "^1.25.1",
25
- "@sensegrep/core": "^0.1.19",
26
- "zod": "^4.2.1"
27
- },
28
- "publishConfig": {
29
- "access": "public"
30
- },
31
- "license": "Apache-2.0",
32
- "repository": {
33
- "type": "git",
34
- "url": "https://github.com/Stahldavid/sensegrep.git"
35
- },
36
- "homepage": "https://github.com/Stahldavid/sensegrep",
37
- "bugs": {
38
- "url": "https://github.com/Stahldavid/sensegrep/issues"
39
- }
40
- }
1
+ {
2
+ "name": "@sensegrep/mcp",
3
+ "mcpName": "io.github.Stahldavid/sensegrep",
4
+ "version": "0.1.20",
5
+ "type": "module",
6
+ "main": "./dist/server.js",
7
+ "bin": {
8
+ "sensegrep-mcp": "dist/server.js"
9
+ },
10
+ "types": "./dist/server.d.ts",
11
+ "files": [
12
+ "dist",
13
+ "README.md",
14
+ "LICENSE"
15
+ ],
16
+ "scripts": {
17
+ "build": "tsc -p tsconfig.json",
18
+ "check": "tsc -p tsconfig.json --noEmit",
19
+ "prepublishOnly": "node ../../build.js"
20
+ },
21
+ "engines": {
22
+ "node": ">=18"
23
+ },
24
+ "dependencies": {
25
+ "@modelcontextprotocol/sdk": "^1.25.1",
26
+ "@sensegrep/core": "^0.1.19",
27
+ "zod": "^4.2.1"
28
+ },
29
+ "publishConfig": {
30
+ "access": "public"
31
+ },
32
+ "license": "Apache-2.0",
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "https://github.com/Stahldavid/sensegrep.git"
36
+ },
37
+ "homepage": "https://github.com/Stahldavid/sensegrep",
38
+ "bugs": {
39
+ "url": "https://github.com/Stahldavid/sensegrep/issues"
40
+ },
41
+ "keywords": [
42
+ "mcp",
43
+ "mcp-server",
44
+ "semantic-search",
45
+ "ai-agents",
46
+ "code-search"
47
+ ]
48
+ }