ticktest-mcp 0.3.1__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.
@@ -0,0 +1,9 @@
1
+ """ticktest-mcp — TickTest 回测 API 的 MCP Server
2
+
3
+ 让任意 AI Agent(Claude Code、Cursor、Windsurf 等)通过 MCP 协议
4
+ 直接发现并调用 TickTest A股量化回测 API。
5
+
6
+ Version: 0.3.1
7
+ """
8
+
9
+ __version__ = "0.3.1"
@@ -0,0 +1,7 @@
1
+ """ticktest-mcp 入口 — 支持 python -m ticktest_mcp"""
2
+
3
+ import asyncio
4
+ from ticktest_mcp.server import main
5
+
6
+ if __name__ == "__main__":
7
+ asyncio.run(main())