minitap-mcp 0.9.0__py3-none-any.whl → 0.9.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.
- minitap/mcp/core/logging_config.py +3 -1
- {minitap_mcp-0.9.0.dist-info → minitap_mcp-0.9.1.dist-info}/METADATA +1 -1
- {minitap_mcp-0.9.0.dist-info → minitap_mcp-0.9.1.dist-info}/RECORD +5 -5
- {minitap_mcp-0.9.0.dist-info → minitap_mcp-0.9.1.dist-info}/WHEEL +0 -0
- {minitap_mcp-0.9.0.dist-info → minitap_mcp-0.9.1.dist-info}/entry_points.txt +0 -0
|
@@ -13,9 +13,11 @@ def configure_logging(log_level: str = "INFO") -> None:
|
|
|
13
13
|
log_level: The logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
|
|
14
14
|
"""
|
|
15
15
|
# Configure standard library logging
|
|
16
|
+
# CRITICAL: Use stderr to avoid polluting stdout with non-JSONRPC data
|
|
17
|
+
# MCP servers communicate via stdio - stdout MUST only contain JSONRPC messages
|
|
16
18
|
logging.basicConfig(
|
|
17
19
|
format="%(message)s",
|
|
18
|
-
stream=sys.
|
|
20
|
+
stream=sys.stderr,
|
|
19
21
|
level=getattr(logging, log_level.upper()),
|
|
20
22
|
)
|
|
21
23
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: minitap-mcp
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.1
|
|
4
4
|
Summary: Model Context Protocol server for controlling Android & iOS devices with natural language
|
|
5
5
|
Author: Pierre-Louis Favreau, Jean-Pierre Lo, Clément Guiguet
|
|
6
6
|
Requires-Dist: fastmcp>=2.12.4
|
|
@@ -12,7 +12,7 @@ minitap/mcp/core/config.py,sha256=dCQMuT-jvGHBxIsvTQoUDOvZ98MTO5iwgCc3_bngX5M,44
|
|
|
12
12
|
minitap/mcp/core/decorators.py,sha256=ipzR7kbMXacG91f6CliN-nl9unRTtjmANrfueaOXJ2s,3591
|
|
13
13
|
minitap/mcp/core/device.py,sha256=0AU8qGi26axC6toqHrPIzNeDbNDtll0YRwkspHouPmM,8198
|
|
14
14
|
minitap/mcp/core/llm.py,sha256=tI5m5rFDLeMkXE5WExnzYSzHU3nTIEiSC9nAsPzVMaU,1144
|
|
15
|
-
minitap/mcp/core/logging_config.py,sha256=
|
|
15
|
+
minitap/mcp/core/logging_config.py,sha256=GElnKsOFtk58EMJWPKRGtKW101tnCubNKRFTe0gEh4I,2020
|
|
16
16
|
minitap/mcp/core/models.py,sha256=egLScxPAMo4u5cqY33UKba7z7DsdgqfPW409UAqW1Jg,1942
|
|
17
17
|
minitap/mcp/core/sdk_agent.py,sha256=5YEr7aDjoiwbRQkZBK3jDa08c5QhPwLxahzlYrEB_KE,1132
|
|
18
18
|
minitap/mcp/core/storage.py,sha256=t9BAEqXH7Nu8p8hgGIk3mO6rxLwviBP0FqvQD4Lz8CQ,13184
|
|
@@ -29,7 +29,7 @@ minitap/mcp/tools/read_swift_logs.py,sha256=Wc1XqQWWuNuPEIBioYD2geVd1p9Yq2USik6S
|
|
|
29
29
|
minitap/mcp/tools/screen_analyzer.md,sha256=TTO80JQWusbA9cKAZn-9cqhgVHm6F_qJh5w152hG3YM,734
|
|
30
30
|
minitap/mcp/tools/take_screenshot.py,sha256=gGySPSeVnx8lHiseGF_Wat82JLF-D8GuQIJ_hCaLZlQ,1730
|
|
31
31
|
minitap/mcp/tools/upload_screenshot.py,sha256=kwh8Q46LWF3nyKbKlvnlf-CtGrPkctXSnLyeebQGNFI,2959
|
|
32
|
-
minitap_mcp-0.9.
|
|
33
|
-
minitap_mcp-0.9.
|
|
34
|
-
minitap_mcp-0.9.
|
|
35
|
-
minitap_mcp-0.9.
|
|
32
|
+
minitap_mcp-0.9.1.dist-info/WHEEL,sha256=fAguSjoiATBe7TNBkJwOjyL1Tt4wwiaQGtNtjRPNMQA,80
|
|
33
|
+
minitap_mcp-0.9.1.dist-info/entry_points.txt,sha256=rYVoXm7tSQCqQTtHx4Lovgn1YsjwtEEHfddKrfEVHuY,55
|
|
34
|
+
minitap_mcp-0.9.1.dist-info/METADATA,sha256=3zTwoaqHLDMUhftH78b7rO284NkyoBgBoOBPvuttzRM,10619
|
|
35
|
+
minitap_mcp-0.9.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|