Skip to main content
Glama

Cursor MCP Server

by johnneerdael
test-server.js569 B
var test = require('tape') var load = require('./') var expectedArial = require('./fnt/Arial.json') var fs = require('fs') var http = require('http') var arialBin = fs.readFileSync('fnt/Arial.bin') test('should load from server URL', function (t) { t.plan(1) const server = http.createServer((req,res) => { res.end(arialBin) }) server.listen(8003, () => { load({ url: 'http://localhost:8003', binary: true }, (err, res) => { if (err) t.fail(err) else t.deepEqual(res, expectedArial) server.close() }) }) })

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