Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
MCP Rand
Claim
by
turlockmike
npm
GitHub
TypeScript
MIT License
13
2
Reddit
Discord
Overview
Inspect
New
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
mcp-rand
src
babel.config.mjs
.clinerules
CONTRIBUTING.md
.cursorrules
.gitignore
install.sh
jest.config.mjs
jest.setup.ts
LICENSE
package.json
package-lock.json
README.md
tsconfig.json
{ "name": "mcp-rand", "type": "module", "version": "0.2.0", "description": "MCP server providing random generation utilities including UUID, numbers, strings, passwords, Gaussian distribution, dice rolling, and card drawing", "main": "build/index.js", "bin": { "mcp-rand": "build/index.js" }, "scripts": { "build": "tsc", "postbuild": "chmod +x build/index.js", "start": "node build/index.js", "dev": "tsc -w", "test": "NODE_OPTIONS=--experimental-vm-modules jest", "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch", "prepublishOnly": "npm run build" }, "files": [ "build", "README.md", "LICENSE" ], "publishConfig": { "access": "public" }, "keywords": [ "mcp", "uuid", "random", "gaussian", "password", "string", "generator", "tools", "utilities", "dice", "cards", "deck" ], "author": "turlockmike", "license": "ISC", "dependencies": { "@modelcontextprotocol/sdk": "^1.1.1", "typescript": "^5.3.3" }, "devDependencies": { "@babel/core": "^7.26.0", "@babel/preset-env": "^7.26.0", "@types/jest": "^29.5.14", "@types/node": "^22.10.2", "babel-jest": "^29.7.0", "jest": "^29.7.0", "ts-jest": "^29.2.5" } }