Skip to main content
Glama

Server Details

U.S. casino directory + a player's loyalty data, comps, tiers, and gambling tax docs.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 3.9/5 across 4 of 4 tools scored. Lowest: 3.3/5.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct purpose: get_casino retrieves a single casino by slug, list_rewards_programs lists reward programs, player_action handles authenticated player operations, and search_casinos searches casinos. No overlap in functionality.

Naming Consistency4/5

Three of four tools follow a verb_noun pattern (get_casino, list_rewards_programs, search_casinos), while player_action uses a noun_noun pattern. This slight inconsistency is minor.

Tool Count5/5

With 4 tools, the server is well-scoped for a casino loyalty system, covering core queries and a generic action endpoint without unnecessary bloat.

Completeness4/5

The tool set covers searching and retrieving casino details and rewards, plus player actions. Missing CRUD for casinos or rewards, but the scope appears limited to read and player actions, which is reasonable.

Available Tools

4 tools
get_casinoAInspect

Get a casino's detail including its rewards/players-club program and full tier ladder, by slug.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesCasino slug, e.g. bellagio-nv-880e8400
Behavior3/5

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

No annotations provided, so description bears the burden. Indicates read-only operation ('Get'), but does not explicitly state no side effects, auth requirements, or return format. Adequate but could add more detail.

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?

Single sentence, no wasted words. Front-loaded with purpose, immediately clear. Highly concise.

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?

Given 1 parameter, no output schema, and no annotations, the description is fairly complete. It specifies what is included (rewards program, tier ladder). Missing details about response structure, but acceptable for a simple get operation.

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%, so the description adds no additional meaning beyond what the schema already provides for 'slug'. Baseline score.

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?

Clear verb ('Get') and specific resource ('casino's detail including its rewards/players-club program and full tier ladder'). Distinguishes from siblings like 'list_rewards_programs' (lists programs) and 'search_casinos' (search).

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?

Description implies use when you have a slug and need full details. No explicit alternatives or when-not-to-use, but context is clear enough; sibling names provide contrast.

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

list_rewards_programsBInspect

List casino rewards/players-club programs, optionally filtered by search term or brand.

ParametersJSON Schema
NameRequiredDescriptionDefault
brandNo
limitNo
searchNo
Behavior2/5

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

No annotations provided, and description only states it lists programs without disclosing read-only nature, ordering, or constraints. Minimal behavioral insight.

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?

Single sentence, front-loaded with core purpose, no redundancy. Highly concise.

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

Completeness3/5

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

Lacks details on return format, sorting, or brand interpretation. No output schema. Adequate for a simple list but could provide more context.

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?

Description adds meaning for 'search' and 'brand' (filters) but does not explain 'limit' parameter. With 0% schema coverage, partial compensation.

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?

Description clearly states it lists rewards/players-club programs with optional filters, distinguishing it from sibling tools like get_casino (single entity) and search_casinos (broader search).

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

Usage Guidelines2/5

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

No guidance on when to use this tool versus alternatives such as search_casinos or get_casino. Lacks context for choosing this tool.

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

player_actionAInspect

Authenticated. Invoke any LoyaltyVIP player/host action (proxies POST /v1/player). Requires a Bearer API key in the Authorization header. Examples: tier_status, bankroll_status, list_trips, list_w2g, tax_year_summary, host_dashboard.

ParametersJSON Schema
NameRequiredDescriptionDefault
actionYesAction name, e.g. tier_status
paramsNoOptional action parameters
Behavior3/5

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

No annotations provided, so description carries full burden. It mentions authentication and proxying, but does not disclose side effects, rate limits, or whether actions are read-only or mutating. Basic transparency.

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 plus a list of examples. Front-loaded with purpose, then requirement, then examples. No wasted words.

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?

Covers authentication, proxying, and gives examples. Without an output schema, could mention that response varies by action, but overall adequate for a generic proxy tool.

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

Parameters4/5

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

Schema coverage is 100% with descriptions for action and params. The description adds concrete examples for the action parameter, providing more meaning than the schema alone.

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?

Clearly states it invokes any LoyaltyVIP player/host action and proxies POST /v1/player, with examples. Differs from siblings (get_casino, etc.) which are about casino/rewards data.

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?

Indicates it is for player actions and lists examples, but does not explicitly compare to siblings or state when not to use. Context is clear enough for an agent.

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

search_casinosAInspect

Search the public U.S. casino directory by name, state (two-letter code), type (commercial|tribal|racino), or rewards availability.

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoName search
typeNocasino_type: commercial | tribal | racino
limitNo
stateNoTwo-letter state code, e.g. NV
offsetNo
has_rewardsNo
Behavior3/5

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

No annotations are provided, so the description bears full burden. It mentions 'public' but does not disclose read-only nature, rate limits, pagination, or ordering. Adequate but lacks depth.

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?

Single sentence with 18 words, no fluff, front-loaded with action and resource. Every word adds value.

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

Completeness3/5

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

Given no output schema and 6 parameters, the description should mention pagination (limit/offset) and result structure. It only covers filter criteria, leaving response format and pagination behavior unknown.

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 50%. Description repeats schema info for q, type, state, and adds 'rewards availability' context for has_rewards. However, limit and offset are left unexplained, and descriptions mostly duplicate 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 clearly states the tool searches a public casino directory by specific criteria (name, state, type, rewards). It is distinct from siblings: get_casino (specific casino), list_rewards_programs (rewards), player_action (player actions).

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 implies the tool is for general search with filters, but does not explicitly state when not to use it or when to prefer siblings. Lacks direct guidance like 'Use for broad queries; use get_casino for known IDs.'

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

Discussions

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

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources