We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ivo-toby/mcp-picnic'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import * as esbuild from "esbuild";
await esbuild.build({
entryPoints: ["./src/index.ts"],
bundle: true,
platform: "node",
format: "esm",
outfile: "./dist/bundle.js",
target: "node18",
banner: {
js: `import { createRequire } from 'module';const require = createRequire(import.meta.url);`,
},
});