drand-mcp-server 🎲

build

Use verifiable randomness in your AI application. This Model Context Protocol (MCP) server enables you to get a random value from the drand network, verify its validity and use it as an input seed to your model-driven flows!

Use Cases

  • repeatable, random sampling of input data
  • interaction with other MCP servers in a verifiable manner (e.g. paying out rewards based on a prompt)
  • verifying the output of another random process using historical drand beacons

Prerequisites

  • a relatively recent version of node (v21+ - fetch is required)

Installation

You can run the MCP server either using npx or after building locally.

Usage with VS Code

Create a file called .vscode/mcp.json in your workspace (or in your home directory) and add the following code:

{
  "servers": {
    "drand": {
      "command": "npx",
      "args": [
        "drand-mcp-server"
      ]
    }
  }
}

For additional info, see the VS Code docs on MCP

Usage with Claude

You can run the drand-mcp-server alongside claude desktop by adding the following to your config:

{
  "mcpServers": {
    "drand": {
      "command": "npx",
      "args": [
        "drand-mcp-server"
      ]
    }
  }
}

Tools

The following tools are available from the MCP server

NameParamsDescription
get-randomness-latestnonefetches the latest available beacon from drand quicknet
get-randomness-by-timetime in millisecondsfetches the randomness beacon emitted at or just before the time
provided
get-randomness-by-roundroundfetches the randomness beacon emitted with a given round number

Building from source

  • install dependencies with npm install
  • build the application with npm run build
  • run the application with either npm start or node ./dist/index.mjs

You can also configure VS Code and Claude as above, replacing the command/args with the following:

  "command": "node",
  "args": ["/path/to/my/project/drand-mcp-server/dist/index.mjs"]

Roadmap

  • fetch latest randomness
  • fetch randomness by round
  • fetch randomness by time
  • select items from a list

Related in Other - Secure MCP Servers

ServerSummaryActions
Salaah MCPA FastAPI and MCP service providing Islamic prayer times calculations using the islamic_times librar...View
UPS MCP ServerA Model Context Protocol (MCP) server for UPS shipping and logistics capabilities. This server enabl...View
Stock AnalysisThis is a Model Context Protocol (MCP) server that provides stock analysis tools for Claude Desktop....View
Time MCP ServerA Model Context Protocol server that provides time and timezone conversion capabilities. This server...View
PlexA Model Context Protocol (MCP) server that provides AI assistants with comprehensive access to your...View
BSC MultiSend MCPAn MCP server that enables agents to perform bulk BNB and BEP20 token transfers on BSC.View