cnhkmcp 1.1.8__tar.gz → 1.1.9__tar.gz
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.
- {cnhkmcp-1.1.8/cnhkmcp.egg-info → cnhkmcp-1.1.9}/PKG-INFO +1 -1
- {cnhkmcp-1.1.8 → cnhkmcp-1.1.9}/cnhkmcp/__init__.py +1 -1
- {cnhkmcp-1.1.8 → cnhkmcp-1.1.9}/cnhkmcp/untracked/platform_functions.py +2 -3
- {cnhkmcp-1.1.8 → cnhkmcp-1.1.9/cnhkmcp.egg-info}/PKG-INFO +1 -1
- {cnhkmcp-1.1.8 → cnhkmcp-1.1.9}/setup.py +1 -1
- {cnhkmcp-1.1.8 → cnhkmcp-1.1.9}/LICENSE +0 -0
- {cnhkmcp-1.1.8 → cnhkmcp-1.1.9}/MANIFEST.in +0 -0
- {cnhkmcp-1.1.8 → cnhkmcp-1.1.9}/README.md +0 -0
- {cnhkmcp-1.1.8 → cnhkmcp-1.1.9}/cnhkmcp/untracked/forum_functions.py +0 -0
- {cnhkmcp-1.1.8 → cnhkmcp-1.1.9}/cnhkmcp/untracked/user_config.json +0 -0
- {cnhkmcp-1.1.8 → cnhkmcp-1.1.9}/cnhkmcp.egg-info/SOURCES.txt +0 -0
- {cnhkmcp-1.1.8 → cnhkmcp-1.1.9}/cnhkmcp.egg-info/dependency_links.txt +0 -0
- {cnhkmcp-1.1.8 → cnhkmcp-1.1.9}/cnhkmcp.egg-info/entry_points.txt +0 -0
- {cnhkmcp-1.1.8 → cnhkmcp-1.1.9}/cnhkmcp.egg-info/not-zip-safe +0 -0
- {cnhkmcp-1.1.8 → cnhkmcp-1.1.9}/cnhkmcp.egg-info/requires.txt +0 -0
- {cnhkmcp-1.1.8 → cnhkmcp-1.1.9}/cnhkmcp.egg-info/top_level.txt +0 -0
- {cnhkmcp-1.1.8 → cnhkmcp-1.1.9}/requirements.txt +0 -0
- {cnhkmcp-1.1.8 → cnhkmcp-1.1.9}/setup.cfg +0 -0
|
@@ -1857,12 +1857,11 @@ async def get_pyramid_multipliers() -> Dict[str, Any]:
|
|
|
1857
1857
|
return {"error": str(e)}
|
|
1858
1858
|
|
|
1859
1859
|
@mcp.tool()
|
|
1860
|
-
async def get_pyramid_alphas(
|
|
1861
|
-
category: Optional[str] = None, start_date: Optional[str] = None,
|
|
1860
|
+
async def get_pyramid_alphas(start_date: Optional[str] = None,
|
|
1862
1861
|
end_date: Optional[str] = None) -> Dict[str, Any]:
|
|
1863
1862
|
"""Get user's current alpha distribution across pyramid categories."""
|
|
1864
1863
|
try:
|
|
1865
|
-
return await brain_client.get_pyramid_alphas(
|
|
1864
|
+
return await brain_client.get_pyramid_alphas(start_date, end_date)
|
|
1866
1865
|
except Exception as e:
|
|
1867
1866
|
return {"error": str(e)}
|
|
1868
1867
|
|
|
@@ -13,7 +13,7 @@ def read_requirements():
|
|
|
13
13
|
|
|
14
14
|
setup(
|
|
15
15
|
name="cnhkmcp",
|
|
16
|
-
version="1.1.
|
|
16
|
+
version="1.1.9",
|
|
17
17
|
author="CNHK",
|
|
18
18
|
author_email="cnhk@example.com",
|
|
19
19
|
description="A comprehensive Model Context Protocol (MCP) server for quantitative trading platform integration",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|