ideconnect 1.0.1 → 1.0.3
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 +8 -18
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -43,10 +43,16 @@ No external services, no paid APIs, no cloud dependencies - 100% local and priva
|
|
|
43
43
|
|
|
44
44
|
**Prerequisites:** Node.js 18 or higher, npm or yarn
|
|
45
45
|
|
|
46
|
-
**
|
|
46
|
+
**Install from npm (Recommended):**
|
|
47
47
|
|
|
48
48
|
```bash
|
|
49
|
-
npm
|
|
49
|
+
npm install -g ideconnect
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
Then in your project directory:
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
ideconnect setup
|
|
50
56
|
```
|
|
51
57
|
|
|
52
58
|
This automatically:
|
|
@@ -70,22 +76,6 @@ This automatically:
|
|
|
70
76
|
|
|
71
77
|
3. Start using context-aware AI assistance!
|
|
72
78
|
|
|
73
|
-
**Manual Installation (If Needed):**
|
|
74
|
-
|
|
75
|
-
If automated setup doesn't work:
|
|
76
|
-
|
|
77
|
-
```bash
|
|
78
|
-
# 1. Install dependencies
|
|
79
|
-
cd server
|
|
80
|
-
npm install
|
|
81
|
-
|
|
82
|
-
# 2. Initialize context
|
|
83
|
-
cd ..
|
|
84
|
-
node scripts/init.js
|
|
85
|
-
|
|
86
|
-
# 3. Configure IDE manually (see IDE Configuration below)
|
|
87
|
-
```
|
|
88
|
-
|
|
89
79
|
## IDE Configuration
|
|
90
80
|
|
|
91
81
|
The setup script automatically configures Cursor and Claude Desktop. If automatic configuration fails, manually add to your IDE's config:
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ideconnect",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Free, self-hosted MCP server for shared project context across AI IDEs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"ideconnect": "
|
|
7
|
+
"ideconnect": "scripts/setup.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"server/",
|