🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@wheelfor/mcp

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wheelfor/mcp

MCP server for wheelfor.com — create, spin, and manage decision wheels

latest
Source
npmnpm
Version
1.0.1
Version published
Weekly downloads
28
-22.22%
Maintainers
1
Weekly downloads
 
Created
Source

@wheelfor/mcp

MCP server for wheelfor.com — create, spin, and manage shareable decision wheels from any MCP-compatible AI client.

Works with Claude Desktop, Cursor, Windsurf, VS Code, and any other MCP host. No account required.

Tools

ToolDescription
create_wheelCreate a new spinning wheel from a list of options
spin_wheelSpin an existing wheel and get a random result with a shareable URL
update_wheelUpdate a wheel's choices, name, or theme using its edit key
decidePick randomly from a list and create a permanent wheel in one step

Installation

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "wheelfor": {
      "command": "npx",
      "args": ["-y", "@wheelfor/mcp"]
    }
  }
}

Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json

Cursor

Add to .cursor/mcp.json in your project or ~/.cursor/mcp.json globally:

{
  "mcpServers": {
    "wheelfor": {
      "command": "npx",
      "args": ["-y", "@wheelfor/mcp"]
    }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "wheelfor": {
      "command": "npx",
      "args": ["-y", "@wheelfor/mcp"]
    }
  }
}

Usage

Once connected, ask your AI assistant:

  • "I can't decide between React, Vue, or Svelte — pick one"
  • "Create a wheel for our team retro: Start, Stop, Continue, More Of, Less Of"
  • "Spin wheelfor.com/wheel/lunch-spots"
  • "Add burgers to my lunch-spots wheel" (requires edit key from creation)

Tool Reference

create_wheel

Creates a new wheel on wheelfor.com.

ParameterTypeRequiredDescription
namestringShort title
choicesstring[]Items on the wheel
descriptionstringOne sentence describing the wheel
themestringVisual theme (see below)
longDescriptionstring2–3 paragraphs on use cases
usageHintstringBrief instruction for visitors
choiceNounSingularstringWord for one choice (e.g. "restaurant")
choiceNounPluralstringPlural form (e.g. "restaurants")

Themes: Fresh Air · Popcorn · Playground · Sprinkles · Chalkboard · Buddy System · Garden Party · Marshmallow

Returns the wheel URL and an edit key for future updates.

spin_wheel

ParameterTypeRequiredDescription
slugstringWheel slug or full URL

Returns the winning choice and a shareable result URL.

update_wheel

ParameterTypeRequiredDescription
slugstringWheel slug
editKeystringEdit key from creation
namestringNew title
choicesstring[]New choices list
themestringNew theme
descriptionstringNew description

decide

ParameterTypeRequiredDescription
optionsstring[]Options to choose from
topicstringWhat the decision is about

Picks a random option immediately, then creates a permanent wheel for future spins.

License

MIT

FAQs

Package last updated on 06 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts