semantiq-mcp 0.1.0 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +83 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,83 @@
1
+ # Semantiq MCP
2
+
3
+ **One MCP Server. Every AI Coding Tool.**
4
+
5
+ Semantiq gives every AI coding assistant semantic understanding of your codebase. Install once, works with Claude Code, Cursor, Windsurf, GitHub Copilot, and any MCP-compatible tool.
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install -g semantiq-mcp
11
+ ```
12
+
13
+ ## Setup
14
+
15
+ Add to your MCP config (Claude Code, Cursor, etc.):
16
+
17
+ ```json
18
+ {
19
+ "mcpServers": {
20
+ "semantiq": {
21
+ "command": "semantiq",
22
+ "args": ["serve"]
23
+ }
24
+ }
25
+ }
26
+ ```
27
+
28
+ That's it. Semantiq auto-detects your project and starts indexing.
29
+
30
+ ## MCP Tools
31
+
32
+ | Tool | Description |
33
+ |------|-------------|
34
+ | `semantiq_search` | Semantic + lexical code search |
35
+ | `semantiq_find_refs` | Find all references to a symbol |
36
+ | `semantiq_deps` | Analyze dependency graph |
37
+ | `semantiq_explain` | Get detailed symbol explanations |
38
+
39
+ ## CLI Commands
40
+
41
+ ```bash
42
+ # Index a project
43
+ semantiq index /path/to/project
44
+
45
+ # Start MCP server
46
+ semantiq serve --project /path/to/project
47
+
48
+ # Search (for testing)
49
+ semantiq search "authentication handler"
50
+
51
+ # Show index stats
52
+ semantiq stats
53
+ ```
54
+
55
+ ## Supported Languages
56
+
57
+ - Rust
58
+ - TypeScript / JavaScript
59
+ - Python
60
+ - Go
61
+ - Java
62
+ - C / C++
63
+ - PHP
64
+
65
+ ## Compatibility
66
+
67
+ Works with all MCP-compatible tools:
68
+ - Claude Code
69
+ - Cursor
70
+ - Windsurf
71
+ - GitHub Copilot
72
+ - JetBrains IDEs (2025.2+)
73
+ - VS Code
74
+ - Codex CLI / Aider
75
+
76
+ ## Links
77
+
78
+ - [GitHub Repository](https://github.com/so-keyldzn/semantiq)
79
+ - [Report Issues](https://github.com/so-keyldzn/semantiq/issues)
80
+
81
+ ## License
82
+
83
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "semantiq-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Semantic code understanding for AI tools - One MCP Server for all AI coding assistants",
5
5
  "bin": {
6
6
  "semantiq": "bin/semantiq"