Skip to main content
Glama

MCPMem

by designly1
build.mjs813 B
import { build } from "esbuild"; import { readFileSync } from "fs"; const packageJson = JSON.parse(readFileSync("./package.json", "utf-8")); // Build the main library await build({ entryPoints: ["src/index.ts"], bundle: true, outfile: "dist/index.js", format: "esm", platform: "node", target: "node18", external: ["better-sqlite3", "sqlite-vec"], // Keep native modules external minify: false, sourcemap: true, }); // Build the CLI await build({ entryPoints: ["src/cli.ts"], bundle: true, outfile: "dist/cli.js", format: "cjs", platform: "node", target: "node18", external: ["better-sqlite3", "sqlite-vec"], // Keep native modules external minify: false, sourcemap: true, banner: { js: "#!/usr/bin/env node", }, }); console.log("✅ Build completed successfully");

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/designly1/mcpmem'

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