just-bash-mcp / src /utils /ids.ts
victor's picture
victor HF Staff
Initial deploy of just-bash MCP server
548a458 verified
Raw
History Blame Contribute Delete
151 Bytes
import { randomBytes } from "node:crypto";
export function newId(prefix: string): string {
return `${prefix}_${randomBytes(12).toString("hex")}`;
}