octocode-mcp 10.0.0 → 10.0.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 +15 -0
- package/dist/index.js +115 -103
- package/dist/public.d.ts +550 -0
- package/dist/public.js +163 -0
- package/package.json +11 -1
package/README.md
CHANGED
|
@@ -137,6 +137,21 @@ https://github.com/user-attachments/assets/c184d5d4-c9b6-40a1-a55a-41cb9b3ecc4f
|
|
|
137
137
|
|
|
138
138
|
## Installation
|
|
139
139
|
|
|
140
|
+
### ⚡ Quick Start (Recommended)
|
|
141
|
+
|
|
142
|
+
The easiest way to install and configure Octocode is using the interactive CLI:
|
|
143
|
+
|
|
144
|
+
```bash
|
|
145
|
+
npx octocode-cli
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
This will automatically:
|
|
149
|
+
- Detect your installed IDEs (Cursor, Claude, Windsurf, etc.)
|
|
150
|
+
- Verify your environment (Node.js, GitHub CLI)
|
|
151
|
+
- Configure the MCP server correctly for each tool
|
|
152
|
+
|
|
153
|
+
---
|
|
154
|
+
|
|
140
155
|
### Standalone Binary (No Node.js Required)
|
|
141
156
|
|
|
142
157
|
```bash
|