@randsum/mcp
Version:
Model Context Protocol stdio server exposing the RANDSUM dice rolling ecosystem to AI agents
67 lines (66 loc) • 1.56 kB
JSON
{
"name": "@randsum/mcp",
"description": "Model Context Protocol stdio server exposing the RANDSUM dice rolling ecosystem to AI agents",
"version": "2.0.0",
"private": false,
"author": {
"name": "Alex Jarvis",
"url": "https://github.com/alxjrvs"
},
"license": "MIT",
"homepage": "https://randsum.dev/tools/mcp/",
"bugs": "https://github.com/RANDSUM/randsum/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/RANDSUM/randsum.git",
"directory": "packages/mcp"
},
"type": "module",
"main": "./dist/index.js",
"bin": {
"randsum-mcp": "dist/index.js"
},
"files": [
"dist",
"!dist/**/*.map",
"LICENSE",
"README.md"
],
"keywords": [
"dice",
"roller",
"rpg",
"mcp",
"model-context-protocol",
"ai",
"llm",
"randsum",
"ttrpg",
"dnd",
"tabletop",
"dice-roller"
],
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"zod": "4.4.3"
},
"devDependencies": {
"@randsum/games": "~3.0.1",
"@randsum/roller": "~2.0.0"
},
"scripts": {
"build": "bunup && chmod +x dist/index.js",
"dev": "bun run src/index.ts",
"test": "bun test",
"lint": "biome lint .",
"format": "biome format --write .",
"format:check": "biome format .",
"prepublishOnly": "bun run build",
"typecheck": "tsc --noEmit",
"check": "bun run build && bun run typecheck && bun run format:check && bun run lint && bun run test"
},
"engines": {
"bun": ">=1.3.10",
"node": ">=18.0.0"
}
}