oioxo-mcp 0.1.2 → 0.1.4
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/LICENSE.md +35 -0
- package/bundle/cli.js +117 -0
- package/package.json +8 -6
- package/dist/cli/agents.d.ts +0 -9
- package/dist/cli/agents.js +0 -155
- package/dist/cli/index.d.ts +0 -2
- package/dist/cli/index.js +0 -86
- package/dist/cli/login.d.ts +0 -1
- package/dist/cli/login.js +0 -127
- package/dist/core/bm25.d.ts +0 -31
- package/dist/core/bm25.js +0 -103
- package/dist/core/capsule.d.ts +0 -34
- package/dist/core/capsule.js +0 -91
- package/dist/core/code-graph.d.ts +0 -29
- package/dist/core/code-graph.js +0 -105
- package/dist/core/files.d.ts +0 -17
- package/dist/core/files.js +0 -88
- package/dist/core/memory.d.ts +0 -12
- package/dist/core/memory.js +0 -55
- package/dist/core/skeleton.d.ts +0 -21
- package/dist/core/skeleton.js +0 -106
- package/dist/gate/account.d.ts +0 -32
- package/dist/gate/account.js +0 -97
- package/dist/index.d.ts +0 -11
- package/dist/index.js +0 -11
- package/dist/mcp/server.d.ts +0 -1
- package/dist/mcp/server.js +0 -122
- package/dist/test/core.test.d.ts +0 -1
- package/dist/test/core.test.js +0 -109
- package/dist/test/e2e.test.d.ts +0 -1
- package/dist/test/e2e.test.js +0 -100
package/LICENSE.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# OIOXO License
|
|
2
|
+
|
|
3
|
+
Copyright © 2026 OIOXO (oioxo.com). All rights reserved.
|
|
4
|
+
|
|
5
|
+
This software ("oioxo-mcp", the OIOXO context engine, and the OIOXO companion
|
|
6
|
+
extensions) is proprietary software, licensed — not sold.
|
|
7
|
+
|
|
8
|
+
## You may
|
|
9
|
+
|
|
10
|
+
- Install and use the software, free of charge, with an OIOXO account, subject
|
|
11
|
+
to the plan limits of that account (Free allowances, OIOXO Pro entitlements).
|
|
12
|
+
- Use it on any number of your own machines and projects.
|
|
13
|
+
|
|
14
|
+
## You may not
|
|
15
|
+
|
|
16
|
+
- Modify, fork, patch, or create derivative works of the software.
|
|
17
|
+
- Reverse engineer, decompile, or deobfuscate the software, except where such
|
|
18
|
+
restriction is prohibited by applicable law.
|
|
19
|
+
- Circumvent, disable, or interfere with the plan/entitlement checks, usage
|
|
20
|
+
metering, or any other technical limitation.
|
|
21
|
+
- Redistribute, sublicense, sell, or offer the software as a service.
|
|
22
|
+
|
|
23
|
+
## Privacy
|
|
24
|
+
|
|
25
|
+
The engine indexes and processes your code 100% on your device. Your code is
|
|
26
|
+
never uploaded. Only metering counts (e.g. saved-token totals) and account
|
|
27
|
+
credentials are exchanged with oioxo.com.
|
|
28
|
+
|
|
29
|
+
## No warranty
|
|
30
|
+
|
|
31
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
32
|
+
IMPLIED. IN NO EVENT SHALL OIOXO BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
33
|
+
LIABILITY ARISING FROM THE USE OF THE SOFTWARE.
|
|
34
|
+
|
|
35
|
+
Full terms: https://oioxo.com/terms
|