Skip to main content
Glama

Cursor MCP Server

by johnneerdael
example3.html961 B
<!DOCTYPE html> <html> <head> <title>Jimp browser example 3</title> </head> <body> <h1>Demonstrates loading a local file using Jimp on a WebWorker thread</h1> <p><input type="file" onchange="newFiles(this);" /></p> <script> function newFiles(element) { for (var i = 0; i < element.files.length; i++) { readFileAndProcess(element.files[i]); } function readFileAndProcess(readfile) { var reader = new FileReader(); reader.addEventListener("load", function () { var worker = new Worker("jimp-worker.js"); worker.onmessage = function (e) { var img = document.createElement("img"); img.setAttribute("src", e.data); document.body.appendChild(img); }; worker.postMessage(this.result); }); reader.readAsArrayBuffer(readfile); } } </script> </body> </html>

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/johnneerdael/multiplatform-cursor-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server