mcpserver.lol
registry/vision
Connection check verified live · 20h ago

vision

Image header probing, bbox conversion, resize plans and colour maths. 4 of 6 free.

Tools 6
GitHub stars
Installs / wk
Licence
Transport streamable-http
Last checked 20h ago

Tools & capabilities

6 tools

Read from the running server on 20h ago.

bbox_convert read-only clipboxes*to_format*from_format*image_widthimage_height
Convert bounding boxes between COCO, Pascal VOC and YOLO. FREE. The three formats disagree on everything: COCO is [x, y, width, height], VOC is [x1, y1, x2, y2], YOLO is [cx, cy,…
colour_check read-only background*foreground*large_text
Check a colour pair against the WCAG contrast thresholds. FREE. Uses the WCAG 2 relative-luminance formula, so the number matches what an accessibility audit will report. Typical…
detection_metrics read-only box_formatimage_widthpredictions*ground_truth*image_heightiou_threshold
Score detections against ground truth and show the working. PREMIUM (license). Greedy matching at the IoU threshold, highest-confidence prediction first, each ground-truth box mat…
image_probe read-only data_base64*
Read an image's format and pixel size from its header alone. FREE. Dimensions live in the first few dozen bytes of PNG, JPEG, GIF, BMP and WebP, so a base64 prefix is enough - you…
nms read-only boxes*scores*box_formatimage_widthimage_heightiou_threshold
Remove duplicate detections of the same object. PREMIUM (license). Greedy non-maximum suppression: keep the highest-scoring box, drop everything overlapping it above the threshold…
resize_plan read-only modewidth*height*targettarget_size
Work out the exact scale, padding and crop for a model input size. FREE. Returns the numbers you need to transform boxes alongside the image, which is the step that usually gets s…