{"name":"com.minimindslab.mcp/tools","slug":"mcp-tools","title":"MiniMindsLab MCP Tools","description":"Deterministic MiniMindsLab utilities for AI agents over MCP.","url":"https://mcp.market/server/mcp-tools","rating":null,"grade":"C","score":56,"certified":false,"status":"active","category":"other","tags":[],"presence":{"score":8,"stars":null,"forks":null,"downloads_week":null,"last_push_at":null,"license":null},"uptime":{"percent":100,"checks":1,"ok":1,"last_checked_at":"2026-09-19T15:55:42.761Z","last_ok_at":"2026-09-19T15:55:42.761Z","latency_ms":968},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":null,"website":"https://mcp.minimindslab.com/","version":"2026.9.18082511631","remotes":[{"type":"streamable-http","url":"https://mcp.minimindslab.com/mcp"}],"packages":[],"tools":[{"name":"accessible-name-and-label-regression-diff","description":"Teams need to know when a code change silently breaks accessible names, labels, or descriptions on interactive elements.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"old_dom_snippet":{"type":"string","description":"Required. Must contain a non-empty HTML or DOM fragment. Plain text is treated as literal markup input, not rendered content."},"new_dom_snippet":{"type":"string","description":"Required. Must contain a non-empty HTML or DOM fragment. Plain text is treated as literal markup input, not rendered content."},"include_description":{"type":"boolean","description":"When true, compare accessible descriptions in addition to accessible names and labels."},"match_by_selector":{"type":"boolean","description":"When true, element matching prefers stable CSS-like selector identity when available; otherwise fallback matching is used."},"show_element_paths":{"type":"boolean","description":"When true, output includes deterministic element path strings for matched and problematic nodes."}},"required":["old_dom_snippet","new_dom_snippet","include_description","match_by_selector","show_element_paths"],"additionalProperties":false}},{"name":"api-breaking-change-diff-viewer","description":"Developers need to know whether a new API contract breaks existing clients before they merge or publish it.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"old_contract_json":{"type":"string","description":"Must be valid JSON text representing the previous contract version. The tool must reject empty input and invalid JSON with a parse error."},"new_contract_json":{"type":"string","description":"Must be valid JSON text representing the proposed contract version. The tool must reject empty input and invalid JSON with a parse error."},"strict_mode":{"type":"boolean","description":"When true, treat type changes, removed required fields, removed paths, enum narrowing, and object-to-non-object changes as breaking. When false, still report them but additive changes may be separated more prominently."},"show_path_details":{"type":"boolean","description":"When true, include full normalized JSON paths for every finding. When false, keep messages concise while preserving path references in structured results."},"ignore_additive_changes":{"type":"boolean","description":"When true, do not include new optional fields, new array members in additive-only contexts, or other non-breaking additions in the visible change lists."}},"required":["old_contract_json","new_contract_json","strict_mode","show_path_details","ignore_additive_changes"],"additionalProperties":false}},{"name":"conference-badge-readability-tester","description":"Estimates whether a name badge is readable at social distance and flags text that will likely feel too small or too crowded.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"badge_width_mm":{"type":"number","minimum":20,"maximum":300,"description":"Must be a finite number between 20 and 300. Values outside the range are invalid."},"company_text":{"type":"string","description":"Text is required. Leading and trailing whitespace are trimmed. Empty after trimming is invalid."},"font_size_pt":{"type":"number","minimum":6,"maximum":72,"description":"Must be a finite number between 6 and 72. Non-numeric or out-of-range values are invalid."},"name_text":{"type":"string","description":"Text is required. Leading and trailing whitespace are trimmed. Empty after trimming is invalid."},"role_text":{"type":"string","description":"Optional text. If provided, it is trimmed. Empty string is treated as blank."},"viewing_distance_cm":{"type":"number","minimum":20,"maximum":500,"description":"Must be a finite number between 20 and 500. Values outside the range are invalid."}},"required":["badge_width_mm","company_text","font_size_pt","name_text","viewing_distance_cm"],"additionalProperties":false}},{"name":"css-stacking-context-inspector","description":"Frontend developers need to understand why an element is visually hidden behind another even when z-index seems correct.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"css_snippet":{"type":"string","description":"Required. Must contain one or more CSS rules. Trim leading and trailing whitespace. If empty, show a validation error and do not compute results."},"html_snippet":{"type":"string","description":"Required. Must contain HTML markup for the inspected layout. Trim leading and trailing whitespace. If empty, show a validation error and do not compute results."},"selected_element":{"type":"string","description":"Required. Must be a CSS selector or element reference token that matches at least one element in the provided HTML snippet. If no match is found, return a selection error."},"show_paint_order":{"type":"boolean","description":"Boolean flag. When true, include a paint order trace. When false, omit the detailed trace but still compute the main layering explanation."},"show_stacking_context_chain":{"type":"boolean","description":"Boolean flag. When true, include the ancestry of stacking context creators from root to selected element. When false, include only the summarized cause."}},"required":["css_snippet","html_snippet","selected_element","show_paint_order","show_stacking_context_chain"],"additionalProperties":false}},{"name":"html-duplicate-id-and-aria-reference-checker","description":"Developers need to catch duplicate IDs and broken ARIA relationships that silently break accessibility and scripting.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"html_snippet":{"type":"string","description":"Accept raw HTML or DOM snippet text. Must be non-empty after trimming. Parse as HTML fragment in document order. Script execution is never allowed."},"check_duplicate_ids":{"type":"boolean","description":"When true, report every duplicated id value with all matching element locations. When false, duplicate-id analysis is skipped and duplicate outputs are empty."},"check_aria_references":{"type":"boolean","description":"When true, scan ARIA ID reference attributes and validate each referenced id against the parsed fragment. When false, aria-reference analysis is skipped and broken-reference outputs are empty."},"show_element_paths":{"type":"boolean","description":"When true, include stable element paths for duplicate and broken-reference findings. When false, path fields are omitted from per-finding detail but summary counts still compute."}},"required":["html_snippet","check_duplicate_ids","check_aria_references","show_element_paths"],"additionalProperties":false}},{"name":"json-contract-compatibility-checker","description":"Developers need to confirm that a sample API response still matches a contract, including required fields, type expectations, enum constraints, and unexpected shape changes.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"contract_json":{"type":"string","description":"Must be valid JSON text. The contract must be an object. Supported contract keys are name/title, type, required, properties, items, enum, const, additionalProperties, and nested combinations of those. Missing or invalid JSON must produce a parse error."},"sample_json":{"type":"string","description":"Must be valid JSON text. The sample must be a JSON object, array, string, number, boolean, or null. Missing or invalid JSON must produce a parse error."},"show_path_details":{"type":"boolean","description":"When true, mismatch outputs must include explicit JSONPath-like paths such as $.user.name. When false, the report may summarize issues without omitting the required output lists."},"strict_mode":{"type":"boolean","description":"When true, extra paths not allowed by the contract are reported as mismatches whenever additionalProperties is false or omitted for object branches that define properties. When false, extra paths are still listed in extra_paths but do not change overall compatibility unless another required rule fails."}},"required":["contract_json","sample_json","show_path_details","strict_mode"],"additionalProperties":false}},{"name":"json-schema-vs-sample-payload-diff-checker","description":"API builders need to see exactly where a sample payload violates a schema or where the schema does not describe real data.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"json_schema":{"type":"string","description":"Must be valid JSON text representing a JSON Schema document. If parsing fails, show a schema parse error and skip comparison."},"sample_json":{"type":"string","description":"Must be valid JSON text representing an instance payload. If parsing fails, show a sample parse error and skip comparison."},"additional_properties_mode":{"type":"string","enum":["schema_default","allow","forbid"],"description":"Controls handling of object properties not declared by the schema. schema_default uses the schema's own additionalProperties / unevaluatedProperties rules where supported by the tool. allow ignores extra-property violations. forbid reports extra-property paths even if the schema is permissive."},"strict_types":{"type":"boolean","description":"When true, require exact JSON type matches for object, array, string, number, integer, boolean, and null. Integers must still be numbers with no fractional component. When false, permit only JSON Schema-compatible numeric coercion is not performed; comparison remains type-based but integer and number mismatches are reported with lower severity in the summary only."},"show_paths":{"type":"boolean","description":"When true, include JSON Pointer-style instance paths for every mismatch. When false, still compute paths internally but present concise grouped results."}},"required":["json_schema","sample_json","additional_properties_mode","strict_types","show_paths"],"additionalProperties":false}}],"scan":{"score":56,"grade":"C","scanned_at":"2026-09-19T09:54:58.835Z","report":{"scannerVersion":"0.1.3","scannedAt":"2026-09-19T09:54:58.761Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":17,"max":20,"notes":["remote reachable in 2450ms"]},"poisoning":{"score":15,"max":15,"notes":["7 tool descriptions checked"]},"auth":{"score":3,"max":15,"notes":["open endpoint exposes 1 write-action tools with no auth"]},"maintenance":{"score":3,"max":15,"notes":["no repository listed"]},"identity":{"score":4,"max":10,"notes":["verified namespace with website, no repo"]}},"findings":[{"id":"auth.open-write","severity":"high","component":"auth","title":"Write-action tools reachable without authentication"},{"id":"maint.no-repo","severity":"low","component":"maintenance","title":"No source repository listed"}],"inputs":{"probes":[{"url":"https://mcp.minimindslab.com/mcp","reachable":true,"authRequired":false,"latencyMs":2450,"serverInfo":{"name":"minimindslab-tools","version":"0.3.0"}}],"packages":[],"repo":{"found":false},"icon":{"url":null,"source":"none"},"presence":{"stars":null,"forks":null,"downloadsWeek":null,"license":null,"lastPushAt":null,"score":8}}}},"grade_history":[],"reviews":[]}