futu-stock-mcp-server 0.1.6__tar.gz → 0.1.7__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.

Potentially problematic release.


This version of futu-stock-mcp-server might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: futu-stock-mcp-server
3
- Version: 0.1.6
3
+ Version: 0.1.7
4
4
  Summary: A Model Context Protocol (MCP) server for accessing Futu OpenAPI functionality
5
5
  Project-URL: Homepage, https://github.com/shuizhengqi1/futu-stock-mcp-server
6
6
  Project-URL: Documentation, https://github.com/shuizhengqi1/futu-stock-mcp-server#readme
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "futu-stock-mcp-server"
3
- version = "0.1.6"
3
+ version = "0.1.7"
4
4
  description = "A Model Context Protocol (MCP) server for accessing Futu OpenAPI functionality"
5
5
  readme = "README.md"
6
6
  license = {text = "MIT"}
@@ -71,7 +71,7 @@ include = [
71
71
 
72
72
  [tool.ruff]
73
73
  line-length = 100
74
- target-version = "py310"
74
+ target-version = "0.1.7"
75
75
 
76
76
  [tool.ruff.lint]
77
77
  select = ["E", "F", "I", "N", "W", "B", "UP"]
@@ -67,7 +67,7 @@ class StdoutProtector:
67
67
  return getattr(self.original, name)
68
68
 
69
69
  # Apply stdout protection in MCP mode VERY EARLY, before any imports
70
- if os.getenv('MCP_MODE') == '1':
70
+ # if os.getenv('MCP_MODE') == '1':
71
71
  # sys.stdout = StdoutProtector(sys.stdout)
72
72
 
73
73
  # 5. Don't redirect stderr in MCP mode - let it work normally