We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Luminaire1337/mtasa-docs-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import * as esbuild from "esbuild";
console.log("Bundling with esbuild...");
await esbuild.build({
entryPoints: ["./src/index.ts"],
bundle: true,
platform: "node",
target: "node24",
format: "esm",
outfile: "./build/index.js",
minify: true,
sourcemap: false,
external: ["better-sqlite3", "@sqliteai/sqlite-vector"],
banner: {
js: "#!/usr/bin/env node",
},
});
console.log("Build complete!");