Essential random number generation utilities from the Python standard library
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Essential random number generation utilities from the Python standard library, including pseudorandom and cryptographically secure operations for integers, floats, weighted selections, list shuffling, and secure token generation.
Looking for the agent skill version? random-number-skills implements the same random number generation strategy as an agent skill instead of an MCP server.
https://github.com/user-attachments/assets/303a441a-2b10-47e3-b2a5-c8b51840e362
| Tool | Purpose | Python function |
|---|---|---|
random_int | Generate random integers | random.randint() |
random_float | Generate random floats | random.uniform() |
random_choices | Choose items from a list (optional weights) | random.choices() |
random_shuffle | Return a new list with items shuffled | random.sample() |
random_sample | Choose k unique items from population | random.sample() |
secure_token_hex | Generate cryptographically secure hex tokens | secrets.token_hex() |
secure_random_int | Generate cryptographically secure integers | secrets.randbelow() |
Add this to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json
random_intGenerate a random integer between low and high (inclusive).
Parameters:
low (int): Lower bound (inclusive)high (int): Upper bound (inclusive)Example:
random_floatGenerate a random float between low and high.
Parameters:
low (float, optional): Lower bound (default: 0.0)high (float, optional): Upper bound (default: 1.0)Example:
random_choicesChoose k items from a population with replacement, optionally weighted.
Parameters:
population (list): List of items to choose fromk (int, optional): Number of items to choose (default: 1)weights (list, optional): Weights for each item (default: equal weights)Example:
random_shuffleReturn a new list with items in random order.
Parameters:
items (list): List of items to shuffleExample:
random_sampleChoose k unique items from population without replacement.
Parameters:
population (list): List of items to choose fromk (int): Number of items to chooseExample:
secure_token_hexGenerate a cryptographically secure random hex token.
Parameters:
nbytes (int, optional): Number of random bytes (default: 32)Example:
secure_random_intGenerate a cryptographically secure random integer below upper_bound.
Parameters:
upper_bound (int): Upper bound (exclusive)Example:
This package provides both standard pseudorandom functions (suitable for simulations, games, etc.) and cryptographically secure functions (suitable for tokens, keys, etc.):
random_int, random_float, random_choices, random_shuffle): Use Python's random module - fast but not cryptographically securesecure_token_hex, secure_random_int): Use Python's secrets module - slower but cryptographically secureNote: Replace <path_to_your_repo>/random-number-mcp with the absolute path to your cloned repository.
Update Version:
version number in pyproject.toml, src/random_number_mcp/__init__.py, and server.json.Update Changelog:
Add a new entry in CHANGELOG.md for the release.
git diff context.Commit along with any other pending changes.
Create GitHub Release:
For exploring and/or developing this server, use the MCP Inspector npm utility:
mcp-name: io.github.zazencodes/random-number-mcp
MIT License - see LICENSE file for details.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/random-number-mcp)<a href="https://allmcps.com/mcp/random-number-mcp"><img src="https://allmcps.com/api/badge/random-number-mcp?style=directory" alt="Random Number MCP on AllMCPs" /></a>