R

Random Number Generator

1-Click Ready

Provides random number generation utilities including pseudorandom and cryptographically secure oper...

3 views
0 installs
Updated Sep 25, 2025
Audited
Provides random number generation utilities including pseudorandom and cryptographically secure operations for integers, floats, weighted selections, list shuffling, and secure token generation.

Tools

1 / 2

random_int

Generate a random integer between low and high (inclusive). Args: low: Lower bound (inclusive) high: Upper bound (inclusive) Returns: Random integer between low and high

random_float

Generate a random float between low and high. Args: low: Lower bound (default 0.0) high: Upper bound (default 1.0) Returns: Random float between low and high

random_choices

Choose k items from population with replacement, optionally weighted. Args: population: List of items to choose from k: Number of items to choose (default 1) weights: Optional weights for...

random_shuffle

Return a new list with items in random order. Args: items: List of items to shuffle Returns: New list with items in random order

random_sample

Choose k unique items from population without replacement. Args: population: List of items to choose from k: Number of items to choose Returns: List of k unique chosen items

Quick Start

More for Security

View All →

More for Developer Tools

View All →

Similar MCP Servers