guohanghui commited on
Commit
154a8b6
·
verified ·
1 Parent(s): 3509042

Update biopython/mcp_output/mcp_plugin/mcp_service.py

Browse files
biopython/mcp_output/mcp_plugin/mcp_service.py CHANGED
@@ -1,7 +1,10 @@
1
  import os
2
  import sys
3
  import re
 
 
4
  from io import StringIO
 
5
 
6
  # Ensure Biopython source is importable when running the MCP service
7
  source_path = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))), "source")
 
1
  import os
2
  import sys
3
  import re
4
+ import time
5
+ import threading
6
  from io import StringIO
7
+ from typing import Optional, Dict, Any
8
 
9
  # Ensure Biopython source is importable when running the MCP service
10
  source_path = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))), "source")