Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"rolldice": {
"args": [
"-y",
"mcp-remote",
"http://localhost:3000/api/mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A beautiful web application and Model Context Protocol (MCP) server that brings dice rolling functionality directly to Claude Desktop. Built with Next.js, shadcn/ui, and the MCP Handler library with server actions for seamless web testing.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in entertainment
The official MCP Server for the Mux API
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to control Unreal E…
Unity MCP Server — 268 tools for AI-assisted game development. Connect Claude, Cursor, or any MCP client to Unity Editor & Unity Hub. Scene management, GameObjects, components, builds, profiling, Shader Graph, Amplify, terrain, physics, NavMesh, animation, MPPM multiplayer & more. Free & open source by AnkleBreaker Studio.
A Model Context Protocol (MCP) server that gives Claude direct control over Strudel.cc for AI-assisted music generation and live coding.
MCP Security Weekly
Get CVE alerts and security updates for Rolldice Mcpserver and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A beautiful web application and Model Context Protocol (MCP) server that brings dice rolling functionality directly to Claude Desktop. Built with Next.js, shadcn/ui, and the MCP Handler library with server actions for seamless web testing.
Visit the live application: [Your Vercel URL here]
git clone https://github.com/gocallum/rolldice-mcpserver.git
cd rolldice-mcpserver
npm install
npm run dev
The application will be available at:
http://localhost:3000 (setup instructions, documentation, and testing)http://localhost:3000/api/[transport] (for Claude Desktop)The web interface at http://localhost:3000 provides detailed, step-by-step instructions with copy-to-clipboard functionality. Here's the quick version:
Download from claude.ai/download
Add this to your Claude Desktop config file:
Windows: %APPDATA%\Claude\claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"rolldice": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"http://localhost:3000/api/mcp"
]
}
}
}
Look for the hammer icon (🔨) in the input box - this indicates MCP tools are available!
Ask Claude natural language questions like:
This application uses mcp-handler to provide seamless integration between web applications and AI assistants like Claude Desktop.
Claude Desktop → Transport Protocol → /api/[transport] → Shared Dice Logic (/lib/dice.ts)
Web Interface → Server Actions → Shared Dice Logic (/lib/dice.ts)
/lib/dice.ts) contains the single source of truth for validation and randomnesslib/dice.ts: Shared dice rolling logic, schema, and tool definitionsapp/api/[transport]/route.ts: MCP server endpoint using mcp-handler + shared logicapp/actions/mcp-actions.ts: Server actions that use the shared dice logicapp/page.tsx: Beautiful web interface with setup instructions and testingcomponents/: Reusable shadcn/ui components for the interfaceThe web interface uses Next.js Server Actions that import the same shared logic as the MCP server:
lib/dice.ts)rollDice() function)