MCP Random Number Server

random.org의 대기 잡음을 사용하여 진정한 난수를 생성합니다.

문서

{{ message }}

maxbogo / mcp-random-number Public

  • Notifications
  • Fork1
  • Star 4

main

BranchesTags

Go to file

Code

NameNameLast commit messageLast commit date
6 Commits
number_dist_datanumber_dist_data
srcsrc
.gitattributes.gitattributes
.gitignore.gitignore
LICENSELICENSE
package-lock.jsonpackage-lock.json
package.jsonpackage.json
readme.mdreadme.md
tsconfig.jsontsconfig.json
View all files

Repository files navigation

MCP Random Number

An MCP (Model Context Protocol) server that provides true random numbers from atmospheric noise via random.org.

Why?

LLMs struggle with generating truly random numbers. This chart shows the distribution bias of 100 random numbers (range 1-100) from 3 popular LLMs:

Distribution Chart

Installation

  1. Copy, Install, Build:
    git clone https://github.com/maxbogo/mcp-random-number.git
    cd mcp-random-number
    npm install
    npm run build
  2. Connect to the MCP server:
    Add the below json to your configuration with the appropriate /ABSOLUTE/PATH/TO/ value:
    {
    "mcpServers": {
    "mcp-random-number": {
    "command": "node",
    "args": ["/ABSOLUTE/PATH/TO/mcp-random-number/build/index.js"]
    }
    }
    }

About

True random numbers from atmospheric noise(random.org) for LLMs

Readme

GPL-3.0 license

Activity

4 stars

0 watching

1 fork

Report repository

Releases

No releases published

Packages

Contributors

Languages

  • JavaScript 55.4%
  • TypeScript 44.6%