Skip to main content
Glama

Spin Wheel Names

Server Details

Spin a random picker wheel, pick a random number, and search shared wheels from spinwheelnames.com.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Available Tools

4 tools
get_wheelAInspect

Fetch a specific saved wheel from spinwheelnames.com by its slug or id, including its entries.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesThe wheel slug or custom id (from a spinwheelnames.com URL).

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

There are no annotations, so the description carries the full burden. It does disclose that this is a read/fetch operation and that entries are included in the result. However, it does not describe the return shape, failure behavior, or any other side effects, which leaves a moderate gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single well-structured sentence: it names the action, the target resource, the identifier type, and the included content with no filler. Every part earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple one-parameter read operation, the description is nearly complete: it says how to identify the wheel and what is returned. It does not specify the exact response format, but given the lack of an output schema and the low complexity, this is acceptable.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, and the id parameter is already described as the wheel slug or custom id from a spinwheelnames.com URL. The description mostly restates that selector and adds 'including its entries', adding little semantic value beyond the schema. Baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb (Fetch) and clearly identifies the resource: a specific saved wheel from spinwheelnames.com, addressed by slug or id, with entries included. This distinguishes it from siblings like search_wheels and spin_wheel right away.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly implies the intended use: when you already have a wheel slug or custom id from a spinwheelnames.com URL and want the full saved wheel. It does not explicitly list when not to use it or name alternative tools, but the context is clear enough.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

pick_random_numberAInspect

Pick a random whole number in an inclusive range, like spinning a "pick a number" wheel. Defaults to 1-100.

ParametersJSON Schema
NameRequiredDescriptionDefault
maxNoMaximum value, inclusive. Defaults to 100.
minNoMinimum value, inclusive. Defaults to 1.

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden, and it does disclose the core behavior: a random whole number with inclusive bounds and default values. It does not mention side effects, error handling, or randomness guarantees, but for a simple stateless number picker this is adequate though not rich.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two concise sentences with the core operation front-loaded and no filler. The wheel metaphor and default summary both earn their place without bloating the text.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a low-complexity tool with two optional parameters fully documented by the schema, the description provides enough context: what the tool returns, the inclusive range behavior, and defaults. It could mention edge cases like min > max, but nothing essential is missing for normal invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema already documents min and max with defaults and inclusivity. The description adds only a summarized 'Defaults to 1-100' and the inclusive-range concept, which is already present in the schema, so no significant extra semantic value is added.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('pick'), the resource (a random whole number), and the key constraints (inclusive range, default 1-100). It is easily distinguished from the sibling wheel tools because it returns a number rather than operating on a wheel.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The wheel analogy implies when a user would want this kind of random pick, and the defaults give immediate invocation context. However, it does not explicitly say when to use this tool over get_wheel/search_wheels/spin_wheel or provide exclusion criteria, so routing guidance is only implied.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_wheelsAInspect

Search publicly shared name-picker wheels already created on spinwheelnames.com by title (e.g. "classroom", "baby names", "raffle"). Returns links a user can open to view or reuse an existing wheel.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results to return (1-20, default 5).
queryYesSearch text to match against wheel titles.

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of behavioral disclosure. It does state that the search covers publicly shared wheels and that the tool returns openable links, which is useful, but it omits details like result ordering, match behavior, or what happens when no wheels are found. This is adequate but not thorough.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no filler. The core action and resource are front-loaded, examples are compact, and the return type is stated clearly. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple search tool with two parameters and no output schema, the description is nearly complete: it explains the input intent and the output type. It could add a note about empty-result behavior or relevance ordering, but the existing text is sufficient for correct invocation in most cases.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3: both query and limit are already documented in the schema. The description adds a small amount of context by noting the search targets wheel titles and providing example queries, but it does not meaningfully extend the schema's parameter explanations.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the specific verb 'Search' with a clear resource: publicly shared name-picker wheels on spinwheelnames.com. It specifies the match target (title) and gives concrete examples, making it distinct from siblings like get_wheel, spin_wheel, and pick_random_number.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly implies this tool is for finding existing public wheels by title, but it does not explicitly state when not to use it or name alternatives such as get_wheel for retrieving a specific wheel by ID. The usage context is clear but exclusion criteria are left to inference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

spin_wheelAInspect

Spin a random picker wheel over a list of entries (names, teams, prizes, tasks, anything) and return the winner. Use this whenever a user wants a fair, random pick from a list. Links back to spinwheelnames.com for a visual spin.

ParametersJSON Schema
NameRequiredDescriptionDefault
entriesYesThe list of names/entries to spin the wheel over (at least 2).

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the behavioral burden. It discloses the core behavior (random selection, returning a winner) and the external visual spin behavior via spinwheelnames.com. It does not detail how randomness is generated or whether any state changes occur, but for a simple picker the disclosed traits are sufficient.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no filler, front-loading what the tool does, then giving usage guidance and the visual-link caveat. Every sentence contributes a distinct piece of information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple, with one parameter and no output schema, and the description explains the input and the returned result (the winner). It could specify the exact return shape, but for a list of string entries the winner is reasonably understood to be one of those strings.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% for the only parameter, entries, so the schema already documents the array of strings and the minimum count of 2. The description adds semantic flexibility ('names, teams, prizes, tasks, anything') but no essential meaning beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('spin') and resource ('random picker wheel over a list of entries'), then states the concrete outcome ('return the winner'). It is clearly distinguishable from sibling tools such as get_wheel and search_wheels, which imply retrieval/search rather than random selection.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly says 'Use this whenever a user wants a fair, random pick from a list', which provides a clear invocation trigger. It does not explicitly name alternatives or exclusion cases, but 'from a list' naturally steers away from number-picking and wheel-search tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 4 tool updates
    • First observedget_wheel
    • First observedpick_random_number
    • First observedsearch_wheels
    • First observedspin_wheel

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Provides true random generation tools for AI agents, including coin flip, dice roller, random numbers, and wheel of fortune, enabling decisions and TTRPG sessions.
    4
    MIT
  • F
    license
    A
    quality
    D
    maintenance
    Enables random selection tools including lottery drawing from option lists, dice rolling with customizable sides and counts, and coin flipping. Supports both single and multiple draws with duplicate control options.
    3
    2
    -
  • A
    license
    Not graded
    quality
    Not graded
    maintenance
    Helps users decide what to eat by randomly selecting meals from a database of 100+ options or a custom list using an interactive spinning wheel widget. It supports cuisine filtering and provides an engaging visual interface to resolve mealtime indecision.
    -
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables coin flips and dice rolls with standard notation and D&D mechanics like advantage/disadvantage and ability score generation.
    Apache 2.0
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.2/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: fetching a saved wheel, searching wheels, spinning a list, and picking a random number. The descriptions make any potential overlap between random selection tools easy to resolve.

Naming Consistency5/5

All tool names follow a consistent lowercase snake_case verb_noun pattern: get_wheel, pick_random_number, search_wheels, spin_wheel. The one pluralization difference is natural and does not hurt predictability.

Tool Count5/5

Four tools is a well-scoped set for this domain. Each tool serves a distinct user need without unnecessary duplication or bloat.

Completeness4/5

Core use cases are covered: finding, retrieving, and spinning wheels, plus numeric random picks. Missing create/update/delete operations for saved wheels is a minor gap, but users can still accomplish random selection tasks without persistence.

Resources