minitap-mcp 0.5.0__py3-none-any.whl → 0.5.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.
Files changed (19) hide show
  1. minitap/mcp/core/agents/{compare_screenshots.py → compare_screenshots/agent.py} +2 -2
  2. minitap/mcp/core/agents/{compare_screenshots.md → compare_screenshots/eval/prompts/prompt_1.md} +2 -2
  3. minitap/mcp/core/agents/compare_screenshots/eval/scenario_1_add_cartoon_img_and_move_button/actual.png +0 -0
  4. minitap/mcp/core/agents/compare_screenshots/eval/scenario_1_add_cartoon_img_and_move_button/figma.png +0 -0
  5. minitap/mcp/core/agents/compare_screenshots/eval/scenario_1_add_cartoon_img_and_move_button/human_feedback.txt +18 -0
  6. minitap/mcp/core/agents/compare_screenshots/eval/scenario_1_add_cartoon_img_and_move_button/prompt_1/model_params.json +3 -0
  7. minitap/mcp/core/agents/compare_screenshots/eval/scenario_1_add_cartoon_img_and_move_button/prompt_1/output.md +46 -0
  8. minitap/mcp/core/agents/compare_screenshots/prompt.md +62 -0
  9. minitap/mcp/tools/analyze_screen.py +3 -3
  10. minitap/mcp/tools/compare_screenshot_with_figma.py +1 -1
  11. minitap/mcp/tools/execute_mobile_command.py +11 -5
  12. minitap/mcp/tools/save_figma_assets.py +1 -5
  13. {minitap_mcp-0.5.0.dist-info → minitap_mcp-0.5.1.dist-info}/METADATA +2 -2
  14. minitap_mcp-0.5.1.dist-info/RECORD +30 -0
  15. {minitap_mcp-0.5.0.dist-info → minitap_mcp-0.5.1.dist-info}/WHEEL +1 -1
  16. minitap_mcp-0.5.0.dist-info/RECORD +0 -24
  17. /minitap/mcp/core/{agents/extract_figma_assets.py → utils/figma.py} +0 -0
  18. /minitap/mcp/core/{utils.py → utils/images.py} +0 -0
  19. {minitap_mcp-0.5.0.dist-info → minitap_mcp-0.5.1.dist-info}/entry_points.txt +0 -0
@@ -8,7 +8,7 @@ from pydantic import BaseModel
8
8
 
9
9
  from minitap.mcp.core.device import capture_screenshot, find_mobile_device
10
10
  from minitap.mcp.core.llm import get_minitap_llm
11
- from minitap.mcp.core.utils import get_screenshot_message_for_llm
11
+ from minitap.mcp.core.utils.images import get_screenshot_message_for_llm
12
12
 
13
13
 
14
14
  class CompareScreenshotsOutput(BaseModel):
@@ -27,7 +27,7 @@ async def compare_screenshots(
27
27
  CompareScreenshotsOutput
28
28
  """
29
29
  system_message = Template(
30
- Path(__file__).parent.joinpath("compare_screenshots.md").read_text(encoding="utf-8")
30
+ Path(__file__).parent.joinpath("prompt.md").read_text(encoding="utf-8")
31
31
  ).render()
32
32
 
33
33
  device = find_mobile_device()
@@ -55,8 +55,8 @@ Structured list of differences + summary.
55
55
  Please use the following to start the analysis.
56
56
  **Input:**
57
57
  First screen is the Figma screenshot (what is expected)
58
- Second screen is what is expected (taken from the phone, after the implementation)
58
+ Second screen is what is implemented (taken from the phone, after the implementation)
59
59
 
60
60
  You will have this data in the next messages sent by the user.
61
61
 
62
- Go ahead and generate your report.
62
+ Go ahead and generate your report.
@@ -0,0 +1,18 @@
1
+ 6 differences found :
2
+ - Add button moved and restyled
3
+ The “+ Add” button is now at the top instead of the bottom, and its style is very different. This is a big layout change — confirm with design.
4
+
5
+ - Title typo
6
+ “Languges” should be “Languages”.
7
+
8
+ - Subtitle casing
9
+ The subtitle should be sentence case (“You are learning”), not title case.
10
+
11
+ - Extra robot illustration
12
+ A large yellow robot was added but isn’t in the design. Confirm if it should be there.
13
+
14
+ - Extra sub-label in list item
15
+ “Norwegian” has a second line (“from French”), which isn’t part of the design. Check if this is intended.
16
+
17
+ - Missing small “M” icon
18
+ The red “M” in the bottom-right is missing.
@@ -0,0 +1,46 @@
1
+ Based on the visual comparison of the provided screenshots, here is a detailed report of the differences.
2
+
3
+ ---
4
+
5
+ 1. **Location**: Top-right of the header area vs. bottom-center of the screen
6
+ **Change**: The `+ Add` button has been moved from a full-width element at the bottom of the screen to a smaller, pill-shaped button in the top-right header area. Its style has also changed from a button with only a text label and icon to one with a solid yellow background and white text/icon.
7
+ **Type**: Position/Movement, Style Change, Size Change
8
+ **Impact**: This is a major structural change to the page layout. The primary call-to-action is in a completely different location, which fundamentally alters the user's interaction pattern with the screen.
9
+ **Recommendation**: The development team should align with the design team on the intended placement and style of this critical action button. This change is too significant to be accidental and suggests a disconnect between design and implementation requirements.
10
+
11
+ 2. **Location**: Page title area, below the `X` icon.
12
+ **Change**: The page title text is misspelled as "Languges" in the implementation, whereas the design specifies "Languages".
13
+ **Type**: Text Change
14
+ **Impact**: Introduces a spelling error on a primary screen title, which appears unprofessional.
15
+ **Recommendation**: Correct the typo in the title to "Languages".
16
+
17
+ 3. **Location**: Subtitle area, directly below the page title.
18
+ **Change**: The text casing for the subtitle has been changed from sentence case ("You are learning") to title case ("You are Learning").
19
+ **Type**: Text Change / Style Change
20
+ **Impact**: A minor visual inconsistency that deviates from the typographic style defined in the design.
21
+ **Recommendation**: Update the subtitle text to use sentence case ("You are learning") to match the design specification.
22
+
23
+ 4. **Location**: Bottom half of the screen.
24
+ **Change**: The implemented screen includes a large illustration of a yellow robot character that is not present in the expected design.
25
+ **Type**: Added Element
26
+ **Impact**: This new element significantly alters the visual hierarchy and feel of the screen, consuming a large amount of whitespace and adding a strong branding element not specified in the design.
27
+ **Recommendation**: Verify with the product/design team if this illustration is an intended addition. If not, it should be removed to match the figma design.
28
+
29
+ 5. **Location**: Second item in the language list ("Norwegian").
30
+ **Change**: One of the language list items in the implementation includes a gray sub-label ("from French") below the language name. The design for list items shows only a single line of text for the language.
31
+ **Type**: Added Element (within a component)
32
+ **Impact**: The implemented list item component has a different structure than designed, supporting two lines of text instead of one. This affects component height and internal layout.
33
+ **Recommendation**: Clarify if this two-line state is a required feature. If so, the design should be updated to include this variant. If not, the sub-label should be removed.
34
+
35
+ 6. **Location**: Bottom-right corner of the screen.
36
+ **Change**: The expected design includes a small, red "M" character/logo in the bottom-right corner. This element is missing from the implemented screen.
37
+ **Type**: Removed Element
38
+ **Impact**: A subtle branding or UI element has been omitted from the final implementation.
39
+ **Recommendation**: Add the "M" element back to the screen in the position specified by the design.
40
+
41
+ ---
42
+
43
+ ### Summary
44
+
45
+ - **Total differences found**: 6
46
+ - **Overall "match score"**: 50/100
@@ -0,0 +1,62 @@
1
+ You will be given _two screenshots_.
2
+
3
+ 1. "Expected screenshot" — this is the design from Figma.
4
+ 2. "Implemented screenshot" — this is the actual phone screen that has been built.
5
+
6
+ Your task is to **compare the two screenshots** in detail, and generate a structured report that includes:
7
+
8
+ - A comprehensive list of **all visible differences** between the expected design and the implemented screen.
9
+ - For each difference, provide:
10
+ - A clear **description** of what changed (for example: "The 'Submit' button label changed from 'Submit' to 'Send'", "The icon moved 8px to the right", "The background colour of header changed from #FFFFFF to #F6F6F6", etc.).
11
+ - The **type of change** (e.g., text change, color change, position/movement, size change, added element, removed element, style change).
12
+ - The **location** of the change (for example: "bottom-centre of screen", "top header area", "to the right of search bar"). If possible, approximate coordinates or bounding box (e.g., "approx. 240×180 px at screen width 1080").
13
+ - The **impact on implementation** (i.e., reasoning about what this means: "The implemented version uses a different text label – so behaviour may differ", "The icon moved and may overlap another element", etc.).
14
+ - A **recommendation** if relevant (e.g., "Should revert to #FFFFFF to match design", "Check alignment of icon relative to search bar", etc.).
15
+
16
+ **Important**:
17
+
18
+ - Assume the screenshots are aligned (same resolution and scale); if not aligned mention that as a difference.
19
+ - Focus on _visible UI differences_ (layout, text, style, iconography) – you do _not_ need to inspect source code, only what is visually rendered.
20
+ - Do _not_ produce generic comments like "looks like a difference" – aim for _precise, actionable descriptions_.
21
+ - **IGNORE dynamic/personal content** that naturally differs between mockups and real implementations:
22
+ - User profile information (names, usernames, email addresses, profile pictures)
23
+ - Time-based information (current time, dates, timestamps, "2 hours ago", etc.)
24
+ - Dynamic data (notification counts, unread badges, live statistics)
25
+ - Sample/placeholder content that varies (e.g., "John Doe" vs "Jane Smith")
26
+ - System status information (battery level, signal strength, network indicators)
27
+ - Only flag these as differences if the _structure, layout, or styling_ of these elements differs, not the content itself.
28
+ - Output in a structured format, for example:
29
+
30
+ ```
31
+
32
+ 1. Location: [top header – full width]
33
+ Change: Background colour changed from #FFFFFF → #F6F6F6
34
+ Type: Colour change
35
+ Impact: The header will appear darker than design; text contrast may be lower.
36
+ Recommendation: Update header background to #FFFFFF as in design.
37
+
38
+ ```
39
+
40
+ - At the end produce a summary with ONLY:
41
+ - Total number of differences found
42
+ - Overall "match score" out of 100 (your estimation of how closely the implementation matches the design)
43
+ - Do NOT include any recap, overview, or macro-level summary of changes - all details are already captured in the differences list above.
44
+
45
+ ### Input:
46
+
47
+ - Screenshot A: Expected (Figma)
48
+ - Screenshot B: Implemented (Phone)
49
+ Provide both screenshots and then the prompt.
50
+
51
+ ### Output:
52
+
53
+ Structured list of differences + summary.
54
+
55
+ Please use the following to start the analysis.
56
+ **Input:**
57
+ First screen is the Figma screenshot (what is expected)
58
+ Second screen is what is implemented (taken from the phone, after the implementation)
59
+
60
+ You will have this data in the next messages sent by the user.
61
+
62
+ Go ahead and generate your report.
@@ -1,15 +1,15 @@
1
1
  from pathlib import Path
2
- from jinja2 import Template
3
- from langchain_core.messages import BaseMessage, HumanMessage, SystemMessage
4
2
  from uuid import uuid4
5
3
 
4
+ from jinja2 import Template
5
+ from langchain_core.messages import BaseMessage, HumanMessage, SystemMessage
6
6
  from pydantic import Field
7
7
 
8
8
  from minitap.mcp.core.config import settings
9
9
  from minitap.mcp.core.decorators import handle_tool_errors
10
10
  from minitap.mcp.core.device import capture_screenshot, find_mobile_device
11
11
  from minitap.mcp.core.llm import get_minitap_llm
12
- from minitap.mcp.core.utils import compress_base64_jpeg, get_screenshot_message_for_llm
12
+ from minitap.mcp.core.utils.images import compress_base64_jpeg, get_screenshot_message_for_llm
13
13
  from minitap.mcp.main import mcp
14
14
 
15
15
 
@@ -11,7 +11,7 @@ from fastmcp.tools.tool import ToolResult
11
11
  from PIL import Image
12
12
  from pydantic import Field
13
13
 
14
- from minitap.mcp.core.agents.compare_screenshots import compare_screenshots
14
+ from minitap.mcp.core.agents.compare_screenshots.agent import compare_screenshots
15
15
  from minitap.mcp.core.config import settings
16
16
  from minitap.mcp.core.decorators import handle_tool_errors
17
17
  from minitap.mcp.main import mcp
@@ -34,10 +34,6 @@ def _serialize_result(result: Any) -> Any:
34
34
  - "Open the settings app and tell me the battery level"
35
35
  - "Find the first 3 unread emails in Gmail"
36
36
  - "Take a screenshot and save it"
37
-
38
- The tool uses the Minitap platform with API key authentication.
39
- Set MINITAP_API_KEY and MINITAP_API_BASE_URL environment variables.
40
- Visit https://platform.minitap.ai to get your API key.
41
37
  """,
42
38
  )
43
39
  @handle_tool_errors
@@ -53,11 +49,21 @@ async def execute_mobile_command(
53
49
  default="default",
54
50
  description="Name of the profile to use for this task. Defaults to 'default'.",
55
51
  ),
52
+ locked_app_package: str | None = Field(
53
+ default=None,
54
+ description="Optional package name of the app to lock the device to. "
55
+ "Will launch the app if not already running, and keep it in foreground "
56
+ "until the task is completed.",
57
+ ),
56
58
  ) -> str | dict[str, Any]:
57
59
  """Run a manual task on a mobile device via the Minitap platform."""
58
60
  try:
59
61
  request = PlatformTaskRequest(
60
- task=ManualTaskConfig(goal=goal, output_description=output_description),
62
+ task=ManualTaskConfig(
63
+ goal=goal,
64
+ output_description=output_description,
65
+ locked_app_package=locked_app_package,
66
+ ),
61
67
  )
62
68
  agent = get_mobile_use_agent()
63
69
  result = await agent.run_task(request=request)
@@ -11,11 +11,6 @@ from fastmcp.exceptions import ToolError
11
11
  from fastmcp.tools.tool import ToolResult
12
12
  from pydantic import Field
13
13
 
14
- from minitap.mcp.core.agents.extract_figma_assets import (
15
- ExtractedAssets,
16
- FigmaAsset,
17
- extract_figma_assets,
18
- )
19
14
  from minitap.mcp.core.config import settings
20
15
  from minitap.mcp.core.decorators import handle_tool_errors
21
16
  from minitap.mcp.core.logging_config import get_logger
@@ -25,6 +20,7 @@ from minitap.mcp.core.models import (
25
20
  DownloadStatus,
26
21
  FigmaDesignContextOutput,
27
22
  )
23
+ from minitap.mcp.core.utils.figma import ExtractedAssets, FigmaAsset, extract_figma_assets
28
24
  from minitap.mcp.main import mcp
29
25
  from minitap.mcp.tools.compare_screenshot_with_figma import (
30
26
  compress_image_base64,
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: minitap-mcp
3
- Version: 0.5.0
3
+ Version: 0.5.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
7
7
  Requires-Dist: python-dotenv>=1.1.1
8
8
  Requires-Dist: pydantic>=2.12.0
9
9
  Requires-Dist: pydantic-settings>=2.10.1
10
- Requires-Dist: minitap-mobile-use>=2.8.2
10
+ Requires-Dist: minitap-mobile-use>=2.9.1
11
11
  Requires-Dist: jinja2>=3.1.6
12
12
  Requires-Dist: langchain-core>=0.3.75
13
13
  Requires-Dist: pillow>=11.1.0
@@ -0,0 +1,30 @@
1
+ minitap/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ minitap/mcp/core/agents/compare_screenshots/agent.py,sha256=k25xbXJSMZgWYsDP0qpmNcqBo5yGbsQxRZ0nnYKHgbc,2054
3
+ minitap/mcp/core/agents/compare_screenshots/eval/prompts/prompt_1.md,sha256=qAyqOroSJROgrvlbsLCtiwFyBKuIMCQ-720A5cwgwPY,3563
4
+ minitap/mcp/core/agents/compare_screenshots/eval/scenario_1_add_cartoon_img_and_move_button/actual.png,sha256=woKE-aTTdb-9ArqfnV-xKKyit1Fu_hklavVwAaMQ14E,99455
5
+ minitap/mcp/core/agents/compare_screenshots/eval/scenario_1_add_cartoon_img_and_move_button/figma.png,sha256=ghxi1P-ofnmMv5_ASm0Rzo5ll_C8-E6ojQUCHRR33TA,102098
6
+ minitap/mcp/core/agents/compare_screenshots/eval/scenario_1_add_cartoon_img_and_move_button/human_feedback.txt,sha256=0gVEqIFpmCX1cx1tlGBdfqDGbTeedyVfwTJZqePURkA,700
7
+ minitap/mcp/core/agents/compare_screenshots/eval/scenario_1_add_cartoon_img_and_move_button/prompt_1/model_params.json,sha256=p93kbUGxLYwc4NAEzPTBDA2XZ1ucsa7yevXZRe6V4Mc,37
8
+ minitap/mcp/core/agents/compare_screenshots/eval/scenario_1_add_cartoon_img_and_move_button/prompt_1/output.md,sha256=Q0_5w9x5WAMqx6-I7KgjlS-tt7HnWKIunP43J7F0W_o,3703
9
+ minitap/mcp/core/agents/compare_screenshots/prompt.md,sha256=qAyqOroSJROgrvlbsLCtiwFyBKuIMCQ-720A5cwgwPY,3563
10
+ minitap/mcp/core/config.py,sha256=_rIH31treZlM2RVnTz5cPXhV9Bu4D-w4TmbPh5_mxxM,1026
11
+ minitap/mcp/core/decorators.py,sha256=kMx_mlaa-2U1AgCoYkgPoLOa-iOoKUF1OjcNV7x59Ds,2940
12
+ minitap/mcp/core/device.py,sha256=sEO3Z-8F325hDOObdH1YBhZE60f17FmIclt5UlhY_nU,7875
13
+ minitap/mcp/core/llm.py,sha256=tI5m5rFDLeMkXE5WExnzYSzHU3nTIEiSC9nAsPzVMaU,1144
14
+ minitap/mcp/core/logging_config.py,sha256=OJlArPJxflbhckerFsRHVTzy3jwsLsNSPN0LVpkmpNM,1861
15
+ minitap/mcp/core/models.py,sha256=egLScxPAMo4u5cqY33UKba7z7DsdgqfPW409UAqW1Jg,1942
16
+ minitap/mcp/core/sdk_agent.py,sha256=-9l1YetD93dzxOeSFOT_j8dDfDFjhJLiir8bhzEjI3Y,900
17
+ minitap/mcp/core/utils/figma.py,sha256=L5aAHm59mrRYaqrwMJSM24SSdZPu2yVg-wsHTF3L8vk,2310
18
+ minitap/mcp/core/utils/images.py,sha256=3uExpRoh7affIieZx3TLlZTmZCcoxWfx1YpPbwhjiJY,1791
19
+ minitap/mcp/main.py,sha256=RsFAU32Rgrt66OiOtO74k7HSeTWRqnw31IurbnsOI3I,4811
20
+ minitap/mcp/server/middleware.py,sha256=fbry_IiHmwUxVjsWgOU2goybcS1kLRXFZZ89KPH1d8E,880
21
+ minitap/mcp/server/poller.py,sha256=Qakq4yO3EJ9dXmRqtE3sJjyk0ij7VBU-NuupHhTf37g,2539
22
+ minitap/mcp/tools/analyze_screen.py,sha256=xQALhVfbEn13ao7C3EvzuBusOgjYIkS9hzKhzQSne6g,1991
23
+ minitap/mcp/tools/compare_screenshot_with_figma.py,sha256=a3rHi8MbomgspJ2iPPgTyRoYrcEai2r4ED_-DssSbNI,4581
24
+ minitap/mcp/tools/execute_mobile_command.py,sha256=oYrcm3NEbABPQBTdWLg7ihLFQBL3-L-xEsx_CiTlA9k,2613
25
+ minitap/mcp/tools/save_figma_assets.py,sha256=V1gnQsJ1tciOxiK08aaqQxOEerJkKzxU8r4hJmkXHtA,9945
26
+ minitap/mcp/tools/screen_analyzer.md,sha256=TTO80JQWusbA9cKAZn-9cqhgVHm6F_qJh5w152hG3YM,734
27
+ minitap_mcp-0.5.1.dist-info/WHEEL,sha256=w4ZtLaDgMAZW2MMZZwtH8zENekoQYBCeullI-zsXJQk,78
28
+ minitap_mcp-0.5.1.dist-info/entry_points.txt,sha256=rYVoXm7tSQCqQTtHx4Lovgn1YsjwtEEHfddKrfEVHuY,55
29
+ minitap_mcp-0.5.1.dist-info/METADATA,sha256=P13tt0jbzzlLaFQtXaQyLEnErAx-Oyg3YP0huuYYiAE,8641
30
+ minitap_mcp-0.5.1.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: uv 0.9.8
2
+ Generator: uv 0.9.9
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,24 +0,0 @@
1
- minitap/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- minitap/mcp/core/agents/compare_screenshots.md,sha256=Gt27HVzXzu71BxcanKPokz1dFPvq90vXbjE2HOn5X0I,3559
3
- minitap/mcp/core/agents/compare_screenshots.py,sha256=Yb7kR8Cv0gWzXyNf-6IS7_9l1npfqYmL-SONJJGgzM4,2060
4
- minitap/mcp/core/agents/extract_figma_assets.py,sha256=L5aAHm59mrRYaqrwMJSM24SSdZPu2yVg-wsHTF3L8vk,2310
5
- minitap/mcp/core/config.py,sha256=_rIH31treZlM2RVnTz5cPXhV9Bu4D-w4TmbPh5_mxxM,1026
6
- minitap/mcp/core/decorators.py,sha256=kMx_mlaa-2U1AgCoYkgPoLOa-iOoKUF1OjcNV7x59Ds,2940
7
- minitap/mcp/core/device.py,sha256=sEO3Z-8F325hDOObdH1YBhZE60f17FmIclt5UlhY_nU,7875
8
- minitap/mcp/core/llm.py,sha256=tI5m5rFDLeMkXE5WExnzYSzHU3nTIEiSC9nAsPzVMaU,1144
9
- minitap/mcp/core/logging_config.py,sha256=OJlArPJxflbhckerFsRHVTzy3jwsLsNSPN0LVpkmpNM,1861
10
- minitap/mcp/core/models.py,sha256=egLScxPAMo4u5cqY33UKba7z7DsdgqfPW409UAqW1Jg,1942
11
- minitap/mcp/core/sdk_agent.py,sha256=-9l1YetD93dzxOeSFOT_j8dDfDFjhJLiir8bhzEjI3Y,900
12
- minitap/mcp/core/utils.py,sha256=3uExpRoh7affIieZx3TLlZTmZCcoxWfx1YpPbwhjiJY,1791
13
- minitap/mcp/main.py,sha256=RsFAU32Rgrt66OiOtO74k7HSeTWRqnw31IurbnsOI3I,4811
14
- minitap/mcp/server/middleware.py,sha256=fbry_IiHmwUxVjsWgOU2goybcS1kLRXFZZ89KPH1d8E,880
15
- minitap/mcp/server/poller.py,sha256=Qakq4yO3EJ9dXmRqtE3sJjyk0ij7VBU-NuupHhTf37g,2539
16
- minitap/mcp/tools/analyze_screen.py,sha256=fjcjf3tTZDlxzmiQFHFNgw38bxPz4eisw57zuxshN2A,1984
17
- minitap/mcp/tools/compare_screenshot_with_figma.py,sha256=G69F6vRFI2tE2wW-oFYPjnY8oFMD9nRZH0H-yvtD4gE,4575
18
- minitap/mcp/tools/execute_mobile_command.py,sha256=qY3UfcDq1BtYcny1YlEF4WV9LwUJxLAmLJCm1VBzxS8,2442
19
- minitap/mcp/tools/save_figma_assets.py,sha256=6GRaaBQfU4h7H_q69Xoy8qdzkZXtBMlFUeV5kCAeBMc,9978
20
- minitap/mcp/tools/screen_analyzer.md,sha256=TTO80JQWusbA9cKAZn-9cqhgVHm6F_qJh5w152hG3YM,734
21
- minitap_mcp-0.5.0.dist-info/WHEEL,sha256=DpNsHFUm_gffZe1FgzmqwuqiuPC6Y-uBCzibcJcdupM,78
22
- minitap_mcp-0.5.0.dist-info/entry_points.txt,sha256=rYVoXm7tSQCqQTtHx4Lovgn1YsjwtEEHfddKrfEVHuY,55
23
- minitap_mcp-0.5.0.dist-info/METADATA,sha256=j4TMgzWoC3WHoDBEavfB-SSzQVdpUV10E0HZW30njDg,8641
24
- minitap_mcp-0.5.0.dist-info/RECORD,,
File without changes