open-edison 0.1.11__py3-none-any.whl → 0.1.15__py3-none-any.whl
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.
- {open_edison-0.1.11.dist-info → open_edison-0.1.15.dist-info}/METADATA +2 -2
- open_edison-0.1.15.dist-info/RECORD +18 -0
- src/frontend_dist/assets/index-_NTxjOfh.js +51 -0
- src/frontend_dist/assets/index-h6k8aL6h.css +1 -0
- src/frontend_dist/index.html +2 -2
- src/middleware/data_access_tracker.py +217 -133
- src/middleware/session_tracking.py +7 -0
- src/server.py +188 -7
- src/telemetry.py +23 -1
- open_edison-0.1.11.dist-info/RECORD +0 -18
- src/frontend_dist/assets/index-BPaXg1vr.js +0 -51
- src/frontend_dist/assets/index-BVdkI6ig.css +0 -1
- {open_edison-0.1.11.dist-info → open_edison-0.1.15.dist-info}/WHEEL +0 -0
- {open_edison-0.1.11.dist-info → open_edison-0.1.15.dist-info}/entry_points.txt +0 -0
- {open_edison-0.1.11.dist-info → open_edison-0.1.15.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: open-edison
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.15
|
4
4
|
Summary: Open-source MCP security, aggregation, and monitoring. Single-user, self-hosted MCP proxy.
|
5
5
|
Author-email: Hugo Berg <hugo@edison.watch>
|
6
6
|
License-File: LICENSE
|
@@ -114,7 +114,7 @@ The server will be available at `http://localhost:3000`.
|
|
114
114
|
|
115
115
|
```bash
|
116
116
|
# After cloning the repo
|
117
|
-
make
|
117
|
+
make docker_run
|
118
118
|
```
|
119
119
|
|
120
120
|
The MCP server will be available at `http://localhost:3000` and the api + frontend at `http://localhost:3001`.
|
@@ -0,0 +1,18 @@
|
|
1
|
+
src/__init__.py,sha256=QWeZdjAm2D2B0eWhd8m2-DPpWvIP26KcNJxwEoU1oEQ,254
|
2
|
+
src/__main__.py,sha256=kQsaVyzRa_ESC57JpKDSQJAHExuXme0rM5beJsYxFeA,161
|
3
|
+
src/cli.py,sha256=9cJN6mRvjbCcpTyTdUVl47J7OB7bxzSy0h8tfVbHuQU,9982
|
4
|
+
src/config.py,sha256=2a5rdImQmNGggL690PQprqZVsRUAJcdo8KS2Foj9N-U,9345
|
5
|
+
src/mcp_manager.py,sha256=VpRdVMy1WLegC-gBnyTcBMcKzQsdIn4JIWuHf7Q40hg,4442
|
6
|
+
src/server.py,sha256=fVJatqKZFBacEd-fm3UROevG6U_JLIQUxt_-UdZEQFM,30727
|
7
|
+
src/single_user_mcp.py,sha256=ue5UnC0nfmuLR4z87904WqH7B-0FaACFDWaBNNL7hXE,15259
|
8
|
+
src/telemetry.py,sha256=PDS3YrwDHOKNyQwr_CclqOfPzeMnjj_x4rfN5OBmFvo,11931
|
9
|
+
src/frontend_dist/index.html,sha256=Y4ZfK2hzHsfCiqh7Z7dzajTdojVjKCC5YL4JxdXeig4,673
|
10
|
+
src/frontend_dist/assets/index-_NTxjOfh.js,sha256=KetbIa26YNfMP_SwWa04fCr9jGNnoPeZsA41-Oxgx6w,236658
|
11
|
+
src/frontend_dist/assets/index-h6k8aL6h.css,sha256=Lq5FK1bsPMR67cAwD_-fMvWqKbo_IyraMSKndoQf8i8,13875
|
12
|
+
src/middleware/data_access_tracker.py,sha256=RZh1RCBYDEbvVIJPkDUz0bfLmK-xYIdV0lGbIxbJYc0,25966
|
13
|
+
src/middleware/session_tracking.py,sha256=mApPfJLjHfiSf5CjMeq-IWqjKFsjvWgBgGrgy5GJWa0,20043
|
14
|
+
open_edison-0.1.15.dist-info/METADATA,sha256=hiQZYgHCzeahyIB26lrwRaQI_QbjCUJ7MxaG90aX62U,8967
|
15
|
+
open_edison-0.1.15.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
16
|
+
open_edison-0.1.15.dist-info/entry_points.txt,sha256=qNAkJcnoTXRhj8J--3PDmXz_TQKdB8H_0C9wiCtDIyA,72
|
17
|
+
open_edison-0.1.15.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
18
|
+
open_edison-0.1.15.dist-info/RECORD,,
|