semantic-code-mcp 2.0.0 → 2.0.1

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 +12 -10
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -23,22 +23,24 @@ Based on [Cursor's research](https://cursor.com/blog/semsearch) showing semantic
23
23
  ## Quick Start
24
24
 
25
25
  ```bash
26
- npm install -g semantic-code-mcp
26
+ npx -y semantic-code-mcp@latest --workspace /path/to/your/project
27
27
  ```
28
28
 
29
- Add to your MCP config:
29
+ Recommended MCP config (portable, no local script dependency):
30
30
 
31
31
  ```json
32
32
  {
33
33
  "mcpServers": {
34
34
  "semantic-code-mcp": {
35
- "command": "semantic-code-mcp",
36
- "args": ["--workspace", "/path/to/your/project"]
35
+ "command": "npx",
36
+ "args": ["-y", "semantic-code-mcp@latest", "--workspace", "/path/to/your/project"]
37
37
  }
38
38
  }
39
39
  }
40
40
  ```
41
41
 
42
+ Do not use machine-specific script paths such as `~/.codex/bin/start-smart-coding-mcp.sh` in shared documentation.
43
+
42
44
  That's it. Your AI assistant now has semantic code search.
43
45
 
44
46
  ## Features
@@ -99,12 +101,12 @@ CPU capped at 50% during indexing. Your machine stays responsive.
99
101
  {
100
102
  "mcpServers": {
101
103
  "code-frontend": {
102
- "command": "semantic-code-mcp",
103
- "args": ["--workspace", "/path/to/frontend"]
104
+ "command": "npx",
105
+ "args": ["-y", "semantic-code-mcp@latest", "--workspace", "/path/to/frontend"]
104
106
  },
105
107
  "code-backend": {
106
- "command": "semantic-code-mcp",
107
- "args": ["--workspace", "/path/to/backend"]
108
+ "command": "npx",
109
+ "args": ["-y", "semantic-code-mcp@latest", "--workspace", "/path/to/backend"]
108
110
  }
109
111
  }
110
112
  }
@@ -184,8 +186,8 @@ All settings via environment variables. Prefix: `SMART_CODING_`.
184
186
  {
185
187
  "mcpServers": {
186
188
  "semantic-code-mcp": {
187
- "command": "semantic-code-mcp",
188
- "args": ["--workspace", "/path/to/project"],
189
+ "command": "npx",
190
+ "args": ["-y", "semantic-code-mcp@latest", "--workspace", "/path/to/project"],
189
191
  "env": {
190
192
  "SMART_CODING_EMBEDDING_PROVIDER": "gemini",
191
193
  "SMART_CODING_GEMINI_API_KEY": "YOUR_KEY",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "semantic-code-mcp",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "AI-powered semantic code search for coding agents. MCP server with multi-provider embeddings and hybrid search.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -42,12 +42,12 @@
42
42
  ],
43
43
  "repository": {
44
44
  "type": "git",
45
- "url": "https://github.com/bitkyc08-arch/smart-coding-mcp.git"
45
+ "url": "https://github.com/bitkyc08-arch/semantic-code-mcp.git"
46
46
  },
47
47
  "bugs": {
48
- "url": "https://github.com/bitkyc08-arch/smart-coding-mcp/issues"
48
+ "url": "https://github.com/bitkyc08-arch/semantic-code-mcp/issues"
49
49
  },
50
- "homepage": "https://github.com/bitkyc08-arch/smart-coding-mcp#readme",
50
+ "homepage": "https://github.com/bitkyc08-arch/semantic-code-mcp#readme",
51
51
  "license": "MIT",
52
52
  "dependencies": {
53
53
  "@huggingface/transformers": "^3.8.1",