Skip to main content
Glama

YouGame

Server Details

Publish a browser game on YouGame: the build rules, the leaderboard SDK, pre-upload checks.

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

7 tools
check_buildA
Read-onlyIdempotent
Inspect

Runs YouGame's pre-upload checks on a build folder and returns a verdict: ready, risky (warnings), or broken (the game will not start). Pass every file path in the folder (relative to the folder, forward slashes) and the text of index.html; also pass the text of .html/.css/.js files worth scanning (8 MB of text in total). Fix what it reports and run it again until the verdict is ready, then zip the folder's contents for upload at https://yougame.co/upload.

ParametersJSON Schema
NameRequiredDescriptionDefault
filesYesEvery file in the build folder.

TDQS

A4.8/5.0
Behavior5/5

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

Annotations already mark this as read-only and idempotent, and the description adds substantial behavioral context: the exact verdict categories, the 8 MB text scanning limit, the requirement to pass all file paths with relative forward-slash paths, and the iterative 'fix and rerun' workflow. It also explains the meaning of 'broken' ('the game will not start'). No contradiction with annotations.

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?

Three sentences, each earning its place: purpose/verdict, input preparation rules, and post-check workflow. It is front-loaded with the main verb and result, and contains no filler or repetition of schema details.

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

Completeness5/5

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

Despite having no output schema, the description fully explains the return value (verdict types) and provides all necessary input constraints and the recommended follow-up action. For a pre-upload validation tool, this is complete enough for an agent to invoke it correctly and interpret the result.

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

Parameters5/5

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

Though schema coverage is 100%, the description adds critical parameter semantics: 'every file path in the folder', 'relative to the folder, forward slashes', which files need text (index.html plus .html/.css/.js files), and the 8 MB total text cap. This meaningfully extends what the schema alone provides, helping the agent construct the `files` array correctly.

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 states a specific action ('Runs YouGame's pre-upload checks'), a specific target ('build folder'), and a clear output ('verdict: ready, risky, or broken'). This clearly distinguishes it from siblings like publish_game, fetch, or search by defining exactly what it checks and what it returns.

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 gives workflow context: run it before upload, fix reported issues, rerun until ready, then zip and upload. It does not explicitly name alternative tools or say when not to use it, but the pre-upload placement and 'until the verdict is ready' instruction make the usage window clear.

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

fetchA
Read-onlyIdempotent
Inspect

Returns the full text of one YouGame documentation section by the id search returned (for example "sdk#leaderboards").

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesSection id from search, e.g. sdk#leaderboards

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already establish the read-only, idempotent, non-destructive nature of the tool. The description adds useful behavioral context by specifying that the full text of the section is returned and that the id comes from a prior search, which supplements the annotation coverage without contradicting it.

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 with no filler. It front-loads the action and outcome, then specifies the input format and provenance, making every part informative.

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

Completeness5/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-only tool with no output schema, the description is complete: it states what is returned, what input is needed, and where that input comes from. No critical information is missing for correct 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 description coverage is 100%, so the parameter is already well documented in the schema. The description reinforces that the id is a section id from search and gives an example, but it does not add significant meaning beyond what the schema provides.

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

Purpose4/5

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

The description clearly states a specific verb ('Returns') and resource ('full text of one YouGame documentation section'), and it specifies the input is the id returned by search. It is distinct from the search tool, but it does not explicitly name or differentiate itself from content-related siblings like get_sdk_reference or get_publish_guide.

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 phrase 'by the id search returned' provides clear workflow context, implying this tool should be used after search and to retrieve a specific section. However, it does not explicitly state when not to use it or mention alternatives, so it stops short of full guidance.

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

get_publish_guideA
Read-onlyIdempotent
Inspect

The rules a browser game must follow to run on YouGame (build layout, paths, limits, the runtime sandbox, what usually breaks and how to fix it) plus how to verify and upload. Read this first when making a game YouGame-ready.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is established. The description adds useful context about what content the guide covers, including build layout, paths, limits, the runtime sandbox, common failures, and verification/upload steps, without contradicting the annotations.

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. The first sentence front-loads the core content and the second sentence provides the direct usage instruction, making efficient use of every word.

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

Completeness5/5

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

For a parameterless read-only guide tool, the description provides sufficient context: what the guide covers, why an agent would need it, and when to read it. There is no output schema or complex behavior that would require additional explanation.

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?

The tool has zero parameters, so there is no parameter schema for the description to supplement. The baseline of 4 applies here, and the description appropriately focuses on what the returned guide contains rather than parameter details that do not exist.

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

Purpose4/5

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

The description clearly states that this tool retrieves the rules and verification steps for making a browser game YouGame-ready, with a specific resource ('publish guide') and content areas. It is distinct from siblings like check_build or publish_game by its focus on rules and how-to guidance, though it doesn't explicitly name alternatives.

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 phrase 'Read this first when making a game YouGame-ready' gives an explicit usage context and priority. It does not mention when to use alternative sibling tools instead, but the 'read this first' instruction is clear enough to guide an agent toward this tool at the start of the workflow.

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

get_sdk_referenceA
Read-onlyIdempotent
Inspect

The complete YouGame SDK reference: leaderboards (gameOver / submitScore), beat-my-score links, online multiplayer with matchmaking, friend invites, skill ratings, and coins. One script tag, no account needed.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already mark the tool as read-only, idempotent, and non-destructive. The description adds useful behavioral context beyond those annotations by noting that integration requires 'One script tag' and 'no account needed,' which helps an agent understand access and setup expectations.

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, front-loaded sentence that immediately states what the tool is, then compresses the scope and setup into an efficient list. Every clause adds information, with no redundancy or filler.

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 zero-parameter reference tool, the description adequately covers what the reference includes and key access characteristics. It could be slightly more complete by mentioning the form of the returned reference, but the current content is sufficient for an agent to select and invoke it correctly.

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?

The tool accepts zero parameters, and the schema fully reflects this with an empty properties object. The description has no parameter semantics to explain, and the feature list provides the relevant selection context, so the baseline for a zero-parameter tool 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 explicitly identifies the resource as 'the complete YouGame SDK reference' and enumerates covered areas (leaderboards, multiplayer, matchmaking, friend invites, skill ratings, coins). This clearly distinguishes it from sibling tools like get_publish_guide, which focuses on a different reference topic.

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 implies use when an agent needs SDK integration information and lists the topics it covers. However, it does not explicitly state when to choose this over alternatives such as get_publish_guide or search, so the routing guidance is only implicit.

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

my_gamesA
Read-onlyIdempotent
Inspect

The games the API key's creator has published on YouGame: slug, URL, title, plays, SDK features. Needs the creator's API key.

ParametersJSON Schema
NameRequiredDescriptionDefault
api_keyNoOnly when the key could not be set as the Authorization header of the MCP connection: the creator's API key (yg_…). Prefer the header (or the YOUGAME_API_KEY environment variable): a key passed here ends up in the agent's transcript and tool logs.

TDQS

A3.7/5.0
Behavior4/5

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

Annotations already declare readOnly and idempotent behavior, so the description only needs to add useful context. It discloses an authentication requirement ('Needs the creator's API key') and clarifies scoping to the creator's published games, which goes beyond the structured annotations. This is meaningful behavioral context for a safe read operation.

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

Conciseness4/5

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

The description is compact, consisting of one sentence listing the output fields and one sentence noting the API key requirement. The most important scoping information is front-loaded in the first clause. Minor awkward phrasing and slight redundancy with the parameter description prevent a perfect score.

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 read-only list tool with no output schema, the description covers the key facts: what is returned, whose games are included, and the authentication requirement. The parameter schema fills in header/environment variable fallback details. Missing details like pagination or ordering are minor for this type of tool.

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 api_key parameter is already thoroughly described in the schema, including when to use it and the privacy tradeoff. The tool description adds only the general statement that the creator's API key is needed, which does not exceed what the schema already communicates. Baseline 3 is appropriate.

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

Purpose4/5

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

The description clearly identifies the resource: games published by the API key's creator, and lists the specific fields returned. It lacks an explicit verb such as 'list' or 'retrieve', and does not explicitly differentiate itself from siblings like search, but the scope is clear enough for an agent to understand the basic operation.

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 implies this tool is for retrieving the API key creator's own published games, which provides some usage context. However, it does not state when to prefer this over search or other siblings, nor does it mention exclusions. The schema's api_key parameter also explains authentication preferences, but the tool description itself offers no when-to-use or when-not-to-use guidance.

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

publish_gameA
Idempotent
Inspect

Publishes a staged build as a game on YouGame, live at once. Needs the creator's API key. First stage the build: zip the build folder's contents and POST the zip as the raw body to https://yougame.co/api/agent/upload with header "Authorization: Bearer $YOUGAME_API_KEY" (for example: curl -sS -X POST https://yougame.co/api/agent/upload -H "Authorization: Bearer $YOUGAME_API_KEY" -H "Content-Type: application/zip" --data-binary @build.zip). The reply has the uploadId, a testUrl where the build already runs, and the check report; if the verdict is broken, fix it and upload again. Then call this tool with the uploadId and the listing details.

ParametersJSON Schema
NameRequiredDescriptionDefault
titleYes1–80 characters.
genresNoUp to 3; the first is the main one.
matureNoTrue when the game is for adults only.
mobileNoTrue only when the game plays with touch (pointer events, on-screen controls, 44 px targets, fills the screen). Lists it for phones.
api_keyNoOnly when the key could not be set as the Authorization header of the MCP connection: the creator's API key (yg_…). Prefer the header (or the YOUGAME_API_KEY environment variable): a key passed here ends up in the agent's transcript and tool logs.
controlsNoDefault Keyboard.
uploadIdYesFrom the upload reply (32 hex characters).
max_scoreNoOptional: the highest score the game can produce. Scores above it are held for review.
play_modeNosingle (solo only), multiplayer (online only), or both. Default: multiplayer when the build calls findMatch, else single.
thumbnailNoStrongly recommended: the path, inside the build, of a 16:9 PNG/JPG/WebP/GIF under 8 MB to show on the game's card. Add one to the build folder before zipping if the game has none.
descriptionNoUp to 1000 characters: what the game is and how to play.
screenshotsNoOptional: up to 8 image paths inside the build.

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already mark this as a mutating, idempotent, non-destructive operation. The description adds valuable behavioral context: publishing makes the game live immediately, requires the creator's API key, and depends on a prior upload verification step. No contradiction with annotations was found.

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 longer than average, but every part earns its place: the purpose is front-loaded, and the staging instructions, curl example, upload reply handling, and invocation condition are all directly actionable. The structure is clear and logical.

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 the tool's complexity, 12 parameters, and absence of an output schema, the description does a strong job of covering prerequisites and the exact call sequence. It does not state what this tool returns after publishing, but 'live at once' conveys the primary outcome sufficiently for correct 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 description coverage is 100%, so the schema already documents every parameter. The description adds useful context about where uploadId comes from and that the remaining fields are 'listing details,' but it does not meaningfully extend the per-parameter meaning beyond what the schema provides.

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 ('Publishes'), names the resource ('a staged build as a game on YouGame'), and states the key effect ('live at once'). This clearly distinguishes it from siblings like check_build or my_games, which have different purposes.

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 gives an explicit workflow: stage and upload the build via curl, inspect the check report, fix broken builds, and only then call this tool with the uploadId and listing details. It lacks explicit when-not-to-use guidance or named alternatives, which keeps it just below a 5.

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. 7 tool updates
    • First observedcheck_build
    • First observedfetch
    • First observedget_publish_guide
    • First observedget_sdk_reference
    • First observedmy_games
    • First observedpublish_game
    • First observedsearch

Frequently Asked Questions

Discussions

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

Related MCP Connectors

Related MCP Servers

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 role: documentation search/fetch, direct doc guides, build validation, publishing, and listing published games. Even the documentation tools are separated by intent: search returns sections, fetch retrieves a section by id, and get_publish_guide/get_sdk_reference return whole reference documents.

Naming Consistency4/5

Most tool names follow a consistent snake_case verb-first pattern: check_build, publish_game, get_publish_guide, get_sdk_reference, search, fetch. The main deviation is 'my_games', which is a noun phrase rather than a verb-led name, and 'fetch' does not follow the 'get_' convention used by the other retrieval tools.

Tool Count5/5

Seven tools is a well-scoped size for this server. Each tool supports a distinct part of the documented workflow: learning the requirements, searching/fetching docs, validating a build, publishing, and listing existing games. No tool feels redundant or unnecessary.

Completeness4/5

The server covers the core lifecycle for making a game YouGame-ready: documentation, build checking, publishing, and listing published games. Minor gaps exist around updating or unpublishing an existing game, and the staging upload is left to a manual curl call rather than being exposed as a tool, but the main workflow has no dead ends.

Resources