codebaxing 0.1.0 → 0.1.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/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Codebaxing
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/codebaxing.svg)](https://www.npmjs.com/package/codebaxing)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+
3
6
  MCP server for **semantic code search**. Index your codebase and search using natural language queries.
4
7
 
5
8
  ## The Idea
@@ -278,6 +281,87 @@ npm install -g codebaxing
278
281
 
279
282
  The Codebaxing tools will now be available in Claude.
280
283
 
284
+ ### Other AI Agents Integration
285
+
286
+ #### Cursor
287
+
288
+ Add to Cursor settings (`~/.cursor/mcp.json`):
289
+
290
+ ```json
291
+ {
292
+ "mcpServers": {
293
+ "codebaxing": {
294
+ "command": "npx",
295
+ "args": ["-y", "codebaxing"]
296
+ }
297
+ }
298
+ }
299
+ ```
300
+
301
+ #### Windsurf (Codeium)
302
+
303
+ Add to Windsurf MCP config (`~/.codeium/windsurf/mcp_config.json`):
304
+
305
+ ```json
306
+ {
307
+ "mcpServers": {
308
+ "codebaxing": {
309
+ "command": "npx",
310
+ "args": ["-y", "codebaxing"]
311
+ }
312
+ }
313
+ }
314
+ ```
315
+
316
+ #### VS Code + Continue
317
+
318
+ Add to Continue config (`~/.continue/config.json`):
319
+
320
+ ```json
321
+ {
322
+ "experimental": {
323
+ "modelContextProtocolServers": [
324
+ {
325
+ "transport": {
326
+ "type": "stdio",
327
+ "command": "npx",
328
+ "args": ["-y", "codebaxing"]
329
+ }
330
+ }
331
+ ]
332
+ }
333
+ }
334
+ ```
335
+
336
+ #### Zed
337
+
338
+ Add to Zed settings (`~/.config/zed/settings.json`):
339
+
340
+ ```json
341
+ {
342
+ "context_servers": {
343
+ "codebaxing": {
344
+ "command": {
345
+ "path": "npx",
346
+ "args": ["-y", "codebaxing"]
347
+ }
348
+ }
349
+ }
350
+ }
351
+ ```
352
+
353
+ #### Generic MCP Client
354
+
355
+ For any MCP-compatible client, use stdio transport:
356
+
357
+ ```bash
358
+ # Command
359
+ npx -y codebaxing
360
+
361
+ # Or if installed globally
362
+ codebaxing
363
+ ```
364
+
281
365
  ## Usage
282
366
 
283
367
  ### MCP Tools
package/README.vi.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Codebaxing
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/codebaxing.svg)](https://www.npmjs.com/package/codebaxing)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+
3
6
  MCP server cho **semantic code search**. Index codebase và tìm kiếm bằng ngôn ngữ tự nhiên.
4
7
 
5
8
  ## Ý tưởng
@@ -278,6 +281,87 @@ npm install -g codebaxing
278
281
 
279
282
  Các tool Codebaxing sẽ có sẵn trong Claude.
280
283
 
284
+ ### Tích hợp với AI Agents khác
285
+
286
+ #### Cursor
287
+
288
+ Thêm vào Cursor settings (`~/.cursor/mcp.json`):
289
+
290
+ ```json
291
+ {
292
+ "mcpServers": {
293
+ "codebaxing": {
294
+ "command": "npx",
295
+ "args": ["-y", "codebaxing"]
296
+ }
297
+ }
298
+ }
299
+ ```
300
+
301
+ #### Windsurf (Codeium)
302
+
303
+ Thêm vào Windsurf MCP config (`~/.codeium/windsurf/mcp_config.json`):
304
+
305
+ ```json
306
+ {
307
+ "mcpServers": {
308
+ "codebaxing": {
309
+ "command": "npx",
310
+ "args": ["-y", "codebaxing"]
311
+ }
312
+ }
313
+ }
314
+ ```
315
+
316
+ #### VS Code + Continue
317
+
318
+ Thêm vào Continue config (`~/.continue/config.json`):
319
+
320
+ ```json
321
+ {
322
+ "experimental": {
323
+ "modelContextProtocolServers": [
324
+ {
325
+ "transport": {
326
+ "type": "stdio",
327
+ "command": "npx",
328
+ "args": ["-y", "codebaxing"]
329
+ }
330
+ }
331
+ ]
332
+ }
333
+ }
334
+ ```
335
+
336
+ #### Zed
337
+
338
+ Thêm vào Zed settings (`~/.config/zed/settings.json`):
339
+
340
+ ```json
341
+ {
342
+ "context_servers": {
343
+ "codebaxing": {
344
+ "command": {
345
+ "path": "npx",
346
+ "args": ["-y", "codebaxing"]
347
+ }
348
+ }
349
+ }
350
+ }
351
+ ```
352
+
353
+ #### MCP Client khác
354
+
355
+ Với bất kỳ MCP client nào, dùng stdio transport:
356
+
357
+ ```bash
358
+ # Command
359
+ npx -y codebaxing
360
+
361
+ # Hoặc nếu đã install global
362
+ codebaxing
363
+ ```
364
+
281
365
  ## Sử dụng
282
366
 
283
367
  ### MCP Tools
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codebaxing",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "MCP server for semantic code search. Index your codebase and search using natural language.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",