We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/taciturnaxolotl/canvas-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
generate-key.ts•298 B
#!/usr/bin/env bun
// Generate a secure encryption key for the .env file
import { randomBytes } from "crypto";
const key = randomBytes(32).toString("base64");
console.log("\n🔐 Generated Encryption Key:");
console.log("\nENCRYPTION_KEY=" + key);
console.log("\nAdd this to your .env file\n");