{"name":"io.github.razikallayi/razi-media","slug":"razikallayi-razi-media","title":"Razi Media Tools","description":"Image processing over MCP: compress and split images, generate images and QR codes.","url":"https://mcp.market/server/razikallayi-razi-media","rating":null,"grade":"C","score":64,"certified":false,"status":"active","category":"media","tags":["media"],"presence":{"score":8,"stars":null,"forks":null,"downloads_week":null,"last_push_at":null,"license":null},"uptime":{"percent":100,"checks":2,"ok":2,"last_checked_at":"2026-09-20T00:30:55.248Z","last_ok_at":"2026-09-20T00:30:55.248Z","latency_ms":233},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":"https://github.com/razikallayi/razikallayi.com","website":"https://www.razi.pro/developer","version":"1.0.0","remotes":[{"type":"streamable-http","url":"https://www.razi.pro/api/mcp/media","headers":[{"description":"Optional. 'Bearer rz_...' raises rate limits and attributes usage.","isSecret":true,"name":"Authorization"}]}],"packages":[],"tools":[{"name":"compress_image","description":"Re-encode a single raster image to webp, jpeg, png or avif, optionally resizing it and/or converting it to grayscale. HEIC/HEIF input is converted to JPEG first, and SVG input is rasterised at 300 DPI, fitted inside 800x800 unless width or height is given. Lossy for webp, jpeg and avif at any quality below 1.0. Raster images only: a PDF or a video is rejected, and neither can be re-encoded anywhere on this server. Output shape depends on size: an input under 5MB is processed in-app and the encoded image bytes are returned, while anything larger is sent to razi.pro's worker and the reply is JSON { url, size, metadata } pointing at a hosted copy instead of bytes. Paid compute; 30 calls per hour per IP. There is no upload channel over MCP: pass `fileUrl`, a URL in razi.pro's own storage; third-party URLs are rejected. Obtain one by uploading the image over the REST API first (POST /api/v1/tools/execute with the file attached).","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"quality":{"type":"number","description":"Encoder quality as a fraction from 0.1 to 1.0, scaled to the encoder's 0-100 range. Default 0.9. Higher means larger and closer to the original."},"format":{"type":"string","enum":["webp","jpeg","png","avif"],"description":"Output container/codec. Default webp; an unrecognised value also falls back to webp. Transparency survives in webp, png and avif but not jpeg."},"width":{"type":"number","description":"Target width in pixels. Give only one of width/height to scale the other proportionally. Omit both to keep the original dimensions. Enlarging is allowed."},"height":{"type":"number","description":"Target height in pixels. Give only one of width/height to scale the other proportionally. Omit both to keep the original dimensions."},"keepAspectRatio":{"type":"boolean","description":"Only has an effect when BOTH width and height are given. Default false, which centre-crops the image to fill the box exactly. Set true to fit the whole image inside the box instead, so the result may be smaller than the box in one dimension."},"grayscale":{"type":"boolean","description":"Drop colour before encoding. Default false."}},"required":[]}},{"name":"generate_image","description":"Generate a new image from a text description with a diffusion model. Returns a single PNG; over MCP it arrives inline when under 1MB and otherwise as a stored URL that stays retrievable for about 24 hours. This invents an image from scratch — it cannot edit, upscale or restyle a picture you already have. Use compress_image to re-encode or resize an existing file. Requires a signed-in razi.pro account; an anonymous call is rejected with 401. Paid compute, 20 images per hour per account, and generation can take tens of seconds. Providers are tried in turn (Fireworks FLUX.1-schnell, Hugging Face FLUX.1-schnell, SDXL, Cloudflare SDXL, Replicate), so the model that actually ran varies with availability and there is no seed or size control. No two calls give identical output, and the image is not automatically hosted anywhere permanent.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"prompt":{"type":"string","description":"What the image should show. Subject, style and composition all help. Required, non-blank, maximum 2,000 characters."},"negativePrompt":{"type":"string","description":"What to keep out of the image, e.g. 'text, watermark, blurry'. Maximum 2,000 characters. Only the Replicate fallback provider honours it, so on the usual path it has no effect."}},"required":["prompt"]}},{"name":"generate_qr_code","description":"Render text or a URL as a QR code image. Returns JSON { dataUrl, text, size } where dataUrl is a base64 PNG data URI embedded in the response — not a hosted link, so nothing is stored and the image cannot be fetched later. Runs locally and costs nothing. Writing only — it cannot read or decode an existing QR code. A long payload makes a denser, less scannable code, so shorten the address by other means before encoding it if you can.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"text":{"type":"string","description":"The exact payload to encode. A URL must include its scheme to be actionable when scanned. Very long values force a denser code that is harder to scan."},"size":{"type":"number","description":"Width and height of the output PNG in pixels; the code is always square. Default 300. Only applied when given as a number."},"errorCorrection":{"type":"string","enum":["L","M","Q","H"],"description":"Declared for compatibility but currently ignored — the code is always generated at the library default, level M (about 15% damage tolerance)."}},"required":["text"]}},{"name":"split_image","description":"Cut one storyboard, collage or grid image into its separate panels and return them as a ZIP, one file per panel in reading order. Over MCP the ZIP is not inlined: it comes back as a stored URL that stays retrievable for about 24 hours. Two modes. Give both rows and cols for an exact equal division, which is free of model cost and predictable. Omit them and a vision model locates the panels, excluding borders, gaps and captions — better on uneven layouts, but it is a paid inference whose panel count and crops can vary between runs, and it fails with 400 if it finds nothing. Panels are cropped, never resized; a lossy re-encode at quality 90 is applied for jpeg and webp. This divides one image into several — it does not shrink a file (use compress_image), and it cannot take a PDF apart. Paid compute; 20 calls per hour per IP. There is no upload channel over MCP: pass `fileUrl`, a URL in razi.pro's own storage; third-party URLs are rejected. Obtain one by uploading the image over the REST API first (POST /api/v1/tools/execute with the file attached).","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"rows":{"type":"number","description":"Number of equal-height rows in the grid. Only takes effect when cols is also given; supplying both switches off vision detection and divides the image evenly, ignoring any borders or gaps."},"cols":{"type":"number","description":"Number of equal-width columns in the grid. Only takes effect when rows is also given. Omit both rows and cols to have the panels detected automatically."},"format":{"type":"string","enum":["png","jpeg","webp"],"description":"Encoding for each extracted panel and its file extension inside the ZIP. Default png, which is lossless; jpeg and webp are written at quality 90."}},"required":[]}}],"scan":{"score":64,"grade":"C","scanned_at":"2026-09-20T00:24:28.881Z","report":{"scannerVersion":"0.1.9","scannedAt":"2026-09-20T00:24:28.856Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 573ms"]},"poisoning":{"score":15,"max":15,"notes":["4 tool descriptions checked"]},"auth":{"score":8,"max":15,"notes":["API key sent as a header"]},"maintenance":{"score":3,"max":15,"notes":["repository not readable: repo not found"]},"identity":{"score":2,"max":10,"notes":["no repository or website to verify"]}},"findings":[],"inputs":{"probes":[{"url":"https://www.razi.pro/api/mcp/media","reachable":true,"authRequired":false,"latencyMs":573,"serverInfo":{"name":"razi-media-tools","version":"2.1.1"}}],"packages":[],"repo":{"found":false,"owner":"razikallayi","repo":"razikallayi.com","error":"repo not found"},"icon":{"url":"https://www.razi.pro/icon.svg?icon.2lxapmye_crw0.svg","source":"site"},"presence":{"stars":null,"forks":null,"downloadsWeek":null,"license":null,"lastPushAt":null,"score":8}}}},"grade_history":[],"reviews":[]}