cnhkmcp 1.2.8__tar.gz → 1.2.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.
Files changed (22) hide show
  1. {cnhkmcp-1.2.8/cnhkmcp.egg-info → cnhkmcp-1.2.9}/PKG-INFO +1 -1
  2. {cnhkmcp-1.2.8 → cnhkmcp-1.2.9}/cnhkmcp/__init__.py +1 -1
  3. {cnhkmcp-1.2.8 → cnhkmcp-1.2.9}/cnhkmcp/untracked/platform_functions.py +3 -3
  4. {cnhkmcp-1.2.8 → cnhkmcp-1.2.9/cnhkmcp.egg-info}/PKG-INFO +1 -1
  5. {cnhkmcp-1.2.8 → cnhkmcp-1.2.9}/setup.py +1 -1
  6. {cnhkmcp-1.2.8 → cnhkmcp-1.2.9}/LICENSE +0 -0
  7. {cnhkmcp-1.2.8 → cnhkmcp-1.2.9}/MANIFEST.in +0 -0
  8. {cnhkmcp-1.2.8 → cnhkmcp-1.2.9}/README.md +0 -0
  9. {cnhkmcp-1.2.8 → cnhkmcp-1.2.9}/cnhkmcp/untracked/BRAIN_6_Tips_Datafield_Exploration_Guide.md +0 -0
  10. {cnhkmcp-1.2.8 → cnhkmcp-1.2.9}/cnhkmcp/untracked/Dataset_Exploration_Expert_Manual.md +0 -0
  11. {cnhkmcp-1.2.8 → cnhkmcp-1.2.9}/cnhkmcp/untracked/daily_report_workflow.md +0 -0
  12. {cnhkmcp-1.2.8 → cnhkmcp-1.2.9}/cnhkmcp/untracked/forum_functions.py +0 -0
  13. {cnhkmcp-1.2.8 → cnhkmcp-1.2.9}/cnhkmcp/untracked/sample_mcp_config.json +0 -0
  14. {cnhkmcp-1.2.8 → cnhkmcp-1.2.9}/cnhkmcp/untracked/user_config.json +0 -0
  15. {cnhkmcp-1.2.8 → cnhkmcp-1.2.9}/cnhkmcp.egg-info/SOURCES.txt +0 -0
  16. {cnhkmcp-1.2.8 → cnhkmcp-1.2.9}/cnhkmcp.egg-info/dependency_links.txt +0 -0
  17. {cnhkmcp-1.2.8 → cnhkmcp-1.2.9}/cnhkmcp.egg-info/entry_points.txt +0 -0
  18. {cnhkmcp-1.2.8 → cnhkmcp-1.2.9}/cnhkmcp.egg-info/not-zip-safe +0 -0
  19. {cnhkmcp-1.2.8 → cnhkmcp-1.2.9}/cnhkmcp.egg-info/requires.txt +0 -0
  20. {cnhkmcp-1.2.8 → cnhkmcp-1.2.9}/cnhkmcp.egg-info/top_level.txt +0 -0
  21. {cnhkmcp-1.2.8 → cnhkmcp-1.2.9}/requirements.txt +0 -0
  22. {cnhkmcp-1.2.8 → cnhkmcp-1.2.9}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cnhkmcp
3
- Version: 1.2.8
3
+ Version: 1.2.9
4
4
  Summary: A comprehensive Model Context Protocol (MCP) server for quantitative trading platform integration
5
5
  Home-page: https://github.com/cnhk/cnhkmcp
6
6
  Author: CNHK
@@ -50,7 +50,7 @@ from .untracked.forum_functions import (
50
50
  read_full_forum_post
51
51
  )
52
52
 
53
- __version__ = "1.2.8"
53
+ __version__ = "1.2.9"
54
54
  __author__ = "CNHK"
55
55
  __email__ = "cnhk@example.com"
56
56
 
@@ -1380,7 +1380,7 @@ class BrainApiClient:
1380
1380
 
1381
1381
  # generate_alpha_links function removed as requested
1382
1382
 
1383
- async def get_documentation_page(self, page_id: str) -> Dict[str, Any]:
1383
+ async def read_specific_documentation(self, page_id: str) -> Dict[str, Any]:
1384
1384
  """Retrieve detailed content of a specific documentation page/article."""
1385
1385
  await self.ensure_authenticated()
1386
1386
 
@@ -2204,10 +2204,10 @@ async def expand_nested_data(data: List[Dict[str, Any]], preserve_original: bool
2204
2204
  # generate_alpha_links MCP tool removed as requested
2205
2205
 
2206
2206
  @mcp.tool()
2207
- async def get_documentation_page(page_id: str) -> Dict[str, Any]:
2207
+ async def read_specific_documentation(page_id: str) -> Dict[str, Any]:
2208
2208
  """Retrieve detailed content of a specific documentation page/article."""
2209
2209
  try:
2210
- return await brain_client.get_documentation_page(page_id)
2210
+ return await brain_client.read_specific_documentation(page_id)
2211
2211
  except Exception as e:
2212
2212
  return {"error": str(e)}
2213
2213
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cnhkmcp
3
- Version: 1.2.8
3
+ Version: 1.2.9
4
4
  Summary: A comprehensive Model Context Protocol (MCP) server for quantitative trading platform integration
5
5
  Home-page: https://github.com/cnhk/cnhkmcp
6
6
  Author: CNHK
@@ -13,7 +13,7 @@ def read_requirements():
13
13
 
14
14
  setup(
15
15
  name="cnhkmcp",
16
- version="1.2.8",
16
+ version="1.2.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