sunholo 0.143.11__py3-none-any.whl → 0.143.12__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.
- sunholo/agents/flask/vac_routes.py +24 -1
- {sunholo-0.143.11.dist-info → sunholo-0.143.12.dist-info}/METADATA +2 -1
- {sunholo-0.143.11.dist-info → sunholo-0.143.12.dist-info}/RECORD +7 -7
- {sunholo-0.143.11.dist-info → sunholo-0.143.12.dist-info}/WHEEL +0 -0
- {sunholo-0.143.11.dist-info → sunholo-0.143.12.dist-info}/entry_points.txt +0 -0
- {sunholo-0.143.11.dist-info → sunholo-0.143.12.dist-info}/licenses/LICENSE.txt +0 -0
- {sunholo-0.143.11.dist-info → sunholo-0.143.12.dist-info}/top_level.txt +0 -0
@@ -1036,7 +1036,30 @@ if __name__ == "__main__":
|
|
1036
1036
|
|
1037
1037
|
try:
|
1038
1038
|
# Handle different MCP methods
|
1039
|
-
if method == "
|
1039
|
+
if method == "initialize":
|
1040
|
+
# Handle MCP protocol initialization
|
1041
|
+
protocol_version = params.get("protocolVersion", "2025-06-18")
|
1042
|
+
capabilities = params.get("capabilities", {})
|
1043
|
+
client_info = params.get("clientInfo", {})
|
1044
|
+
|
1045
|
+
log.info(f"MCP client initializing: {client_info} with protocol version: {protocol_version}")
|
1046
|
+
|
1047
|
+
return {
|
1048
|
+
"jsonrpc": "2.0",
|
1049
|
+
"result": {
|
1050
|
+
"protocolVersion": "2025-06-18",
|
1051
|
+
"capabilities": {
|
1052
|
+
"tools": {}
|
1053
|
+
},
|
1054
|
+
"serverInfo": {
|
1055
|
+
"name": "sunholo-vac-server",
|
1056
|
+
"version": sunholo_version()
|
1057
|
+
}
|
1058
|
+
},
|
1059
|
+
"id": request_id
|
1060
|
+
}
|
1061
|
+
|
1062
|
+
elif method == "tools/list":
|
1040
1063
|
# Create mock tools list based on VACMCPServer capabilities
|
1041
1064
|
tools = [
|
1042
1065
|
{
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: sunholo
|
3
|
-
Version: 0.143.
|
3
|
+
Version: 0.143.12
|
4
4
|
Summary: AI DevOps - a package to help deploy GenAI to the Cloud.
|
5
5
|
Author-email: Holosun ApS <multivac@sunholo.com>
|
6
6
|
License: Apache License, Version 2.0
|
@@ -288,6 +288,7 @@ sunholo deploy my-agent
|
|
288
288
|
|
289
289
|
- **Web Frameworks**: Flask and FastAPI templates
|
290
290
|
- **AI Frameworks**: LangChain and LlamaIndex integration
|
291
|
+
- **MCP Integration**: Model Context Protocol server and client support
|
291
292
|
- **Observability**: Langfuse for tracing and monitoring
|
292
293
|
- **API Standards**: OpenAI-compatible endpoints
|
293
294
|
|
@@ -18,7 +18,7 @@ sunholo/agents/fastapi/base.py,sha256=W-cyF8ZDUH40rc-c-Apw3-_8IIi2e4Y9qRtnoVnsc1
|
|
18
18
|
sunholo/agents/fastapi/qna_routes.py,sha256=lKHkXPmwltu9EH3RMwmD153-J6pE7kWQ4BhBlV3to-s,3864
|
19
19
|
sunholo/agents/flask/__init__.py,sha256=dEoByI3gDNUOjpX1uVKP7uPjhfFHJubbiaAv3xLopnk,63
|
20
20
|
sunholo/agents/flask/base.py,sha256=vnpxFEOnCmt9humqj-jYPLfJcdwzsop9NorgkJ-tSaU,1756
|
21
|
-
sunholo/agents/flask/vac_routes.py,sha256=
|
21
|
+
sunholo/agents/flask/vac_routes.py,sha256=kaPUDyIH5KhCgeCEtag97qErGVZfqpY1ZEiX3y1_r-s,57505
|
22
22
|
sunholo/archive/__init__.py,sha256=qNHWm5rGPVOlxZBZCpA1wTYPbalizRT7f8X4rs2t290,31
|
23
23
|
sunholo/archive/archive.py,sha256=PxVfDtO2_2ZEEbnhXSCbXLdeoHoQVImo4y3Jr2XkCFY,1204
|
24
24
|
sunholo/auth/__init__.py,sha256=TeP-OY0XGxYV_8AQcVGoh35bvyWhNUcMRfhuD5l44Sk,91
|
@@ -175,9 +175,9 @@ sunholo/vertex/init.py,sha256=1OQwcPBKZYBTDPdyU7IM4X4OmiXLdsNV30C-fee2scQ,2875
|
|
175
175
|
sunholo/vertex/memory_tools.py,sha256=tBZxqVZ4InTmdBvLlOYwoSEWu4-kGquc-gxDwZCC4FA,7667
|
176
176
|
sunholo/vertex/safety.py,sha256=S9PgQT1O_BQAkcqauWncRJaydiP8Q_Jzmu9gxYfy1VA,2482
|
177
177
|
sunholo/vertex/type_dict_to_json.py,sha256=uTzL4o9tJRao4u-gJOFcACgWGkBOtqACmb6ihvCErL8,4694
|
178
|
-
sunholo-0.143.
|
179
|
-
sunholo-0.143.
|
180
|
-
sunholo-0.143.
|
181
|
-
sunholo-0.143.
|
182
|
-
sunholo-0.143.
|
183
|
-
sunholo-0.143.
|
178
|
+
sunholo-0.143.12.dist-info/licenses/LICENSE.txt,sha256=SdE3QjnD3GEmqqg9EX3TM9f7WmtOzqS1KJve8rhbYmU,11345
|
179
|
+
sunholo-0.143.12.dist-info/METADATA,sha256=Lr5_OPeAJfveIsbziRkxv4JFEC31OD_5tj2a4rP2gno,18486
|
180
|
+
sunholo-0.143.12.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
181
|
+
sunholo-0.143.12.dist-info/entry_points.txt,sha256=bZuN5AIHingMPt4Ro1b_T-FnQvZ3teBes-3OyO0asl4,49
|
182
|
+
sunholo-0.143.12.dist-info/top_level.txt,sha256=wt5tadn5--5JrZsjJz2LceoUvcrIvxjHJe-RxuudxAk,8
|
183
|
+
sunholo-0.143.12.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|