octocode-mcp 2.3.13 → 2.3.16
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 +60 -2
- package/assets/langchainTutorial.gif +0 -0
- package/assets/logo.png +0 -0
- package/assets/reactVSVueJS.gif +0 -0
- package/assets/reactZustand.gif +0 -0
- package/{build → dist}/index.js +545 -162
- package/manifest.json +110 -0
- package/package.json +19 -7
package/README.md
CHANGED
|
@@ -8,11 +8,14 @@
|
|
|
8
8
|
[](./package.json)
|
|
9
9
|
[](./package.json)
|
|
10
10
|
[](https://modelcontextprotocol.io/)
|
|
11
|
-
[](https://buymeacoffee.com/bgauryy)
|
|
12
11
|
</div>
|
|
13
12
|
|
|
13
|
+
|
|
14
|
+
|
|
14
15
|
## What is Octocode? 🐙
|
|
15
16
|
|
|
17
|
+
**For more details, visit [octocode.ai](https://octocode.ai)**
|
|
18
|
+
|
|
16
19
|
**The perfect code assistant that can help understand anything.** Octocode provides AI-powered advanced search with heuristic discovery and smart fallbacks to understand connections between repositories and NPM packages across any privilege level you have.
|
|
17
20
|
|
|
18
21
|
Instead of manually browsing repositories, ask questions like:
|
|
@@ -73,6 +76,61 @@ npm login
|
|
|
73
76
|
|
|
74
77
|
**That's it!** Octocode automatically works with your organization's private repositories.
|
|
75
78
|
|
|
79
|
+
## DXT Extension 📦
|
|
80
|
+
|
|
81
|
+
This project is available as a **Desktop Extension (DXT)** for easy installation in AI applications like Claude Desktop.
|
|
82
|
+
|
|
83
|
+
### For Developers
|
|
84
|
+
|
|
85
|
+
**Building the DXT Package:**
|
|
86
|
+
|
|
87
|
+
```bash
|
|
88
|
+
# Install dependencies
|
|
89
|
+
yarn install
|
|
90
|
+
|
|
91
|
+
# Build the DXT package
|
|
92
|
+
yarn dxt:pack
|
|
93
|
+
|
|
94
|
+
# Validate the manifest
|
|
95
|
+
yarn dxt:validate
|
|
96
|
+
|
|
97
|
+
# View package information
|
|
98
|
+
yarn dxt:info
|
|
99
|
+
|
|
100
|
+
# Sign the package (optional)
|
|
101
|
+
yarn dxt:sign
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
**DXT Scripts:**
|
|
105
|
+
- `yarn dxt:validate` - Validate the manifest.json file
|
|
106
|
+
- `yarn dxt:pack` - Build and package the extension as a .dxt file
|
|
107
|
+
- `yarn dxt:info` - Show information about the packaged extension
|
|
108
|
+
- `yarn dxt:sign` - Sign the package with a self-signed certificate
|
|
109
|
+
- `yarn dxt:verify` - Verify the signature of a signed package
|
|
110
|
+
|
|
111
|
+
**The DXT package includes:**
|
|
112
|
+
- Compiled MCP server (`dist/index.js`)
|
|
113
|
+
- Extension manifest (`manifest.json`)
|
|
114
|
+
- Package metadata (`package.json`)
|
|
115
|
+
- Logo and assets (`assets/logo.png`)
|
|
116
|
+
- Documentation (`README.md`)
|
|
117
|
+
|
|
118
|
+
**Building DXT from Source:**
|
|
119
|
+
To build the DXT package locally from this repository:
|
|
120
|
+
```bash
|
|
121
|
+
# Clone the repository
|
|
122
|
+
git clone https://github.com/bgauryy/octocode-mcp.git
|
|
123
|
+
cd octocode-mcp
|
|
124
|
+
|
|
125
|
+
# Install dependencies and build
|
|
126
|
+
yarn install
|
|
127
|
+
yarn build
|
|
128
|
+
yarn dxt:pack
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
The generated `octocode-mcp.dxt` file can then be installed in Claude Desktop (just click on it and it will open claude desktop with the extension)
|
|
132
|
+
|
|
133
|
+
|
|
76
134
|
## How It Works 🔄
|
|
77
135
|
|
|
78
136
|
**Smart Discovery Flow:**
|
|
@@ -189,4 +247,4 @@ The goal: **make code exploration as intelligent as having a senior developer gu
|
|
|
189
247
|
|
|
190
248
|
MIT License - See [LICENSE](./LICENSE.md) for details.
|
|
191
249
|
|
|
192
|
-
---
|
|
250
|
+
---
|
|
Binary file
|
package/assets/logo.png
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|