Skip to main content
Glama
hesreallyhim

mcp-rando-server

mcp-rando-server

A Model Context Protocol (MCP) server that provides cryptographically secure random numbers and randomized resources. Uses stdio transport for clients to ensure private data need not leave the user's local machine, and Node's crypto module for strong randomization.

NOTE: This server has not been tested in production - do not rely on it for security-critical applications without thorough testing.

Features

🔧 Tools (9 available)

  • random-number - Generate secure random integers within a range

  • random-decimal - Generate secure random decimal numbers with precision control

  • random-choice - Pick random items from a list (with or without duplicates)

  • shuffle-list - Randomly shuffle a list using Fisher-Yates algorithm

  • random-string - Generate random strings with different character sets

  • roll-dice - Roll dice with custom sides and modifiers

  • generate-uuid - Generate cryptographically secure UUIDs (v4)

  • random-bytes - Generate raw cryptographic bytes in various encodings

  • diceware-passphrase - Generate secure passphrases using the Diceware method

📊 Resources and Resource Templates (3 available)

  • random://facts/numbers - Static resource with random number facts

  • random://dataset/{type} - Dynamic datasets (numbers, coordinates, colors, names)

  • wordlist://{filename} - Access EFF Diceware wordlists for passphrase generation

📝 Prompts (4 available)

  • random-story-starter - Generate random story prompts by genre

  • random-writing-exercise - Create creative writing exercises by difficulty

  • diceware-security-guide - Generate security guidance for diceware passphrase creation and usage

  • password-policy-advisor - Generate advice for creating diceware-friendly password policies

🌳 Roots

  • N/A - The server does not perform any operations that touch the filesystem or require persistent storage.

Related MCP server: Random Number MCP

Security

All randomness is cryptographically secure using the Node.js crypto module:

  • Uses crypto.randomInt() for integers

  • Uses crypto.randomBytes() for floats and raw bytes

  • Uses crypto.randomUUID() for UUIDs

  • Suitable for security-sensitive applications

Diceware Passphrases

The server includes support for generating secure passphrases using the Diceware method:

  • Method: Generates cryptographically secure dice rolls (1-6) to select words from curated wordlists

  • Wordlists: Includes Electronic Frontier Foundation (EFF) wordlists optimized for memorability and security, as well as removing obscene or obscure words.

  • Memorability: Uses common English words that are easy to remember and type

Available wordlists:

  • short_wordlist_unique_prefixes.txt - 1296 words, unique 3-character prefixes (default)

  • short_wordlist.txt - 1296 words, standard EFF short list

  • large_wordlist.txt - 7776 words, full EFF list for maximum security

  • original_reinhold_wordlist.txt - 7776 words, original Diceware list

XKCD comic about password strength

Installation

# Install dependencies
npm install

# Start the server
npm start

# Or for development with auto-reload
npm run dev

Usage

The server uses stdio transport, making it compatible with MCP clients that support stdio.

Example Tool Calls

# Generate 5 random numbers between 1-100
{"method": "tools/call", "params": {"name": "random-number", "arguments": {"min": 1, "max": 100, "count": 5}}}

# Generate a secure password-like string
{"method": "tools/call", "params": {"name": "random-string", "arguments": {"length": 16, "charset": "alphanumeric"}}}

# Roll 3 six-sided dice with +2 modifier
{"method": "tools/call", "params": {"name": "roll-dice", "arguments": {"sides": 6, "count": 3, "modifier": 2}}}

# Generate UUIDs
{"method": "tools/call", "params": {"name": "generate-uuid", "arguments": {"count": 3, "format": "no-hyphens"}}}

# Generate 32 random bytes in base64
{"method": "tools/call", "params": {"name": "random-bytes", "arguments": {"size": 32, "encoding": "base64"}}}

# Generate a 5-word diceware passphrase
{"method": "tools/call", "params": {"name": "diceware-passphrase", "arguments": {"words": 5, "wordlist": "short_wordlist_unique_prefixes.txt", "capitalize": false}}}

# Generate a 6-word capitalized passphrase using the large wordlist
{"method": "tools/call", "params": {"name": "diceware-passphrase", "arguments": {"words": 6, "wordlist": "large_wordlist.txt", "capitalize": true}}}

Example Resource Access

# Get random number facts
{"method": "resources/read", "params": {"uri": "random://facts/numbers"}}

# Get random coordinate dataset
{"method": "resources/read", "params": {"uri": "random://dataset/coordinates"}}

# Access a specific diceware wordlist
{"method": "resources/read", "params": {"uri": "wordlist://short_wordlist_unique_prefixes.txt"}}

# Access the large EFF wordlist
{"method": "resources/read", "params": {"uri": "wordlist://large_wordlist.txt"}}

Example Prompt Usage

# Get a fantasy story starter
{"method": "prompts/get", "params": {"name": "random-story-starter", "arguments": {"genre": "fantasy", "character": "Aria"}}}

# Get an advanced writing exercise
{"method": "prompts/get", "params": {"name": "random-writing-exercise", "arguments": {"difficulty": "advanced", "timeLimit": 20}}}

Requirements

  • Node.js 18+

  • TypeScript (for development)

License

MIT

F
license - not found
-
quality - not tested
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Provides random number generation utilities, including a secure UUID generator powered by Node's crypto module.
    Last updated
    7
    87
    3
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Production-ready MCP server that provides LLMs with essential random generation abilities, including random integers, floats, choices, shuffling, and cryptographically secure tokens.
    Last updated
    7
    50
    MIT
  • F
    license
    A
    quality
    D
    maintenance
    Enables random selection tools including lottery drawing from option lists, dice rolling with customizable sides and counts, and coin flipping. Supports both single and multiple draws with duplicate control options.
    Last updated
    3
    2

View all related MCP servers

Related MCP Connectors

  • 500+ deterministic tools for AI agents: math, conversion, validation, hashing, encoding, date/time.

  • Remote MCP server: 10 developer utilities (base64, JWT, DNS, UUID, URL, JSON, UA, IP lookup).

  • Production-grade cryptography toolkit with 31 MCP tools for classical, PQC, and KMS workflows.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/hesreallyhim/mcp-rando-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server