Packages

BEAM-native MCP toolkit for supervised Elixir servers, clients, auth, and transports

Current section

Files

Jump to
fastest_mcp lib fastest_mcp task_id.ex
Raw

lib/fastest_mcp/task_id.ex

defmodule FastestMCP.TaskId do
@moduledoc false
def generate do
"task-" <> Base.url_encode64(:crypto.strong_rand_bytes(16), padding: false)
end
end