ctxo-mcp 0.5.0 → 0.6.0

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
@@ -4,8 +4,6 @@
4
4
  [![CI](https://github.com/alperhankendi/Ctxo/actions/workflows/ci.yml/badge.svg)](https://github.com/alperhankendi/Ctxo/actions/workflows/ci.yml)
5
5
  [![Release](https://github.com/alperhankendi/Ctxo/actions/workflows/release.yml/badge.svg)](https://github.com/alperhankendi/Ctxo/actions/workflows/release.yml)
6
6
 
7
- **Code intelligence for AI agents one call instead of hundreds.**
8
-
9
7
  <picture>
10
8
  <source media="(prefers-color-scheme: dark)" srcset="docs/img/hero-svg.svg">
11
9
  <source media="(prefers-color-scheme: light)" srcset="docs/img/hero-svg.svg">
@@ -41,15 +39,18 @@ Ctxo is an **MCP server** that **enhances** your existing AI tools with dependen
41
39
 
42
40
  ## Quick Start
43
41
 
44
- One command sets up everything — index directory, AI tool rules, and git hooks:
42
+ One command sets up everything — index directory, MCP server registration, AI tool rules, and git hooks:
45
43
 
46
44
  ```Shell
47
45
  npx ctxo-mcp init
48
46
  ```
49
47
 
50
- Then add ctxo to your IDE's MCP config:
48
+ That's it. The interactive wizard detects your AI tools, registers the ctxo MCP server in the correct config file (`.mcp.json`, `.vscode/mcp.json`, etc.), and generates usage rules so your assistant knows when to call each tool.
49
+
50
+ <details>
51
+ <summary>Manual MCP config (if not using <code>ctxo init</code>)</summary>
51
52
 
52
- **Claude Code / Cursor / Windsurf / Cline** — `.mcp.json`:
53
+ **Claude Code / Cursor / Windsurf / Augment / Antigravity** — `.mcp.json`:
53
54
 
54
55
  ```JSON
55
56
  { "mcpServers": { "ctxo": { "command": "npx", "args": ["-y", "ctxo-mcp"] } } }
@@ -61,12 +62,20 @@ Then add ctxo to your IDE's MCP config:
61
62
  { "servers": { "ctxo": { "type": "stdio", "command": "npx", "args": ["-y", "ctxo-mcp"] } } }
62
63
  ```
63
64
 
65
+ **Amazon Q** — `.amazonq/mcp.json`:
66
+
67
+ ```JSON
68
+ { "mcpServers": { "ctxo": { "command": "npx", "args": ["-y", "ctxo-mcp"] } } }
69
+ ```
70
+
64
71
  **Zed** — `settings.json`:
65
72
 
66
73
  ```JSON
67
74
  { "context_servers": { "ctxo": { "command": { "path": "npx", "args": ["-y", "ctxo-mcp"] } } } }
68
75
  ```
69
76
 
77
+ </details>
78
+
70
79
  ## 14 Tools
71
80
 
72
81
  | Tool | What it does |