lmgrep 0.1.3 → 0.1.4

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 +6 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,7 +8,7 @@ lmgrep uses [Tree-sitter](https://tree-sitter.github.io/tree-sitter/) to parse s
8
8
 
9
9
  - **Any embedding provider** — works with Ollama, OpenAI, Google, or any provider supported by the [Vercel AI SDK](https://sdk.vercel.ai/)
10
10
  - **Tree-sitter chunking** — splits code at AST boundaries so search results are complete, meaningful units
11
- - **MCP server** — ships with an MCP server (`lmgrep-mcp`) for integration with Claude Code, Cursor, and other AI tools
11
+ - **MCP server** — built-in MCP server (`lmgrep mcp`) for integration with Claude Code, Cursor, and other AI tools
12
12
  - **File watching** — `lmgrep serve` watches for changes and incrementally re-indexes
13
13
  - **Cross-project search** — search across multiple indexed projects
14
14
  - **Git-aware** — respects `.gitignore`, deduplicates across worktrees sharing the same remote
@@ -60,8 +60,9 @@ lmgrep search "error handling" --file-prefix src/lib --language .ts
60
60
  |---|---|
61
61
  | `lmgrep index` | Index the current directory |
62
62
  | `lmgrep search <query>` | Search using natural language |
63
- | `lmgrep status` | Show index stats and embedding connectivity |
63
+ | `lmgrep status` | Show index stats, embedding connectivity, and running processes |
64
64
  | `lmgrep serve` | Watch for changes and re-index automatically |
65
+ | `lmgrep mcp` | Start the MCP server (stdio transport) |
65
66
  | `lmgrep init` | Detect embedding setup and create config |
66
67
  | `lmgrep config` | Open the global config in your editor |
67
68
  | `lmgrep repair` | Detect and fix index inconsistencies |
@@ -103,8 +104,8 @@ lmgrep includes an MCP server for use with AI coding assistants. Add it to your
103
104
  {
104
105
  "mcpServers": {
105
106
  "lmgrep": {
106
- "command": "lmgrep-mcp",
107
- "args": []
107
+ "command": "lmgrep",
108
+ "args": ["mcp"]
108
109
  }
109
110
  }
110
111
  }
@@ -178,4 +179,4 @@ pnpm check # format and lint (Biome)
178
179
 
179
180
  ## License
180
181
 
181
- Apache-2.0
182
+ GPL-3.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lmgrep",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Semantic code search with any AI embedding provider",
5
5
  "type": "module",
6
6
  "bin": {