Skip to main content
Glama

yagames-mcp

MCP server for Yandex Games — search the catalog, manage game drafts, upload builds, and publish games, all from your MCP client.

License: MIT Node MCP SDK


Features

  • Public catalog — search games, browse popular titles, list categories (no auth required)

  • Game management — create and update game drafts

  • Build upload — upload game ZIP archives as new versions

  • Moderation & publish — submit for review, publish approved games

  • Status tracking — check draft/moderation/publish status, list all your games

Related MCP server: Yandex Webmaster MCP Server

Tools

Public (no auth)

Tool

Description

yagames-search

Search games by keyword

yagames-popular

Get popular games, optionally filtered by category

yagames-categories

List all available genres

Authenticated (env vars required)

Tool

Description

yagames-create-draft

Register a new game in the console

yagames-update-draft

Update an existing game draft

yagames-upload-build

Upload a ZIP archive as a new build

yagames-submit-moderation

Send the game for moderation review

yagames-publish

Publish a game that passed moderation

yagames-status

Check status of a specific game

yagames-list-my-games

List all games on your account

Quick start

Requirements

  • Node.js >= 18

  • npm

Install & run

npm install
npm run build

Authenticated tools

Set these environment variables to use the console management tools:

export YAGAMES_SESSION_COOKIE="your_session_id_value"
export YAGAMES_CSRF_TOKEN="your_csrf_token_value"

How to obtain credentials:

  1. Go to games.yandex.ru/console and log in with your developer account

  2. Open DevTools (F12 / Cmd+Option+I)

  3. Session_id: Application → Cookies → games.yandex.ru → copy Session_id value

  4. CSRF token: Network tab → find a POST request to /console/api/application → Request Headers → copy X-CSRF-Token

Warning: Credentials grant full access to your developer account. Never share them or commit them to version control.

Usage with opencode

Add to your project's opencode.json or global ~/.config/opencode/opencode.json:

{
  "mcp": {
    "yagames-mcp": {
      "type": "local",
      "command": ["node", "/path/to/yagames-mcp/build/index.js"],
      "enabled": true,
      "env": {
        "YAGAMES_SESSION_COOKIE": "your_session_id",
        "YAGAMES_CSRF_TOKEN": "your_csrf_token"
      }
    }
  }
}

Usage with Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "yagames-mcp": {
      "command": "node",
      "args": ["/path/to/yagames-mcp/build/index.js"],
      "env": {
        "YAGAMES_SESSION_COOKIE": "your_session_id",
        "YAGAMES_CSRF_TOKEN": "your_csrf_token"
      }
    }
  }
}

npx (from npm)

npx yagames-mcp

Architecture

yagames-mcp/
├── src/
│   ├── index.ts              # MCP server entry (JSON-RPC over stdio)
│   ├── types.ts              # Shared TypeScript types
│   ├── client/
│   │   ├── catalog.ts        # Public catalog client (HTML scraping)
│   │   └── console.ts        # Authenticated console client (REST API)
│   └── tools/
│       ├── catalog.ts        # yagames-search, yagames-popular, yagames-categories
│       ├── draft.ts          # yagames-create-draft, yagames-update-draft
│       ├── build.ts          # yagames-upload-build
│       ├── moderation.ts     # yagames-submit-moderation, yagames-publish
│       └── status.ts         # yagames-status, yagames-list-my-games
├── build/                    # Compiled JS output
├── package.json
└── tsconfig.json

How it works

  • Public catalog scrapes HTML from yandex.ru/games — Yandex Games renders game data server-side in __appData__ JSON and game-card elements. No API key required.

  • Console API calls games.yandex.ru/console/api/application* with Session_id cookie and X-CSRF-Token header for authentication.

  • Transport: stdio (standard MCP protocol). The server speaks JSON-RPC 2.0.

API endpoints

Endpoint

Purpose

yandex.ru/games/

Public catalog (HTML)

games.yandex.ru/console/api/application

Create a game draft

games.yandex.ru/console/api/applications

List all games

games.yandex.ru/console/api/application/{id}

Get/update game details

games.yandex.ru/console/api/application/{id}/builds

Upload build

games.yandex.ru/console/api/application/{id}/moderation

Submit for review

games.yandex.ru/console/api/application/{id}/publish

Publish game

The Yandex Games platform

Yandex Games is one of the largest HTML5 game platforms in the CIS region.
Developer documentation: yandex.ru/dev/games, with a library of over 2,000 games. The audience is predominantly 55+ (38%), with 58% women and 42% men. Games are monetized through in-game ads. The platform has 27 genre categories.

License

MIT

Available Tools

10 tools
yagames-categoriesA

List all available game categories/genres on Yandex Games

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the full burden, but 'List' clearly signals a read-only operation with no side effects, and the zero-parameter schema confirms no input requirements. It does not describe the return format or potential error conditions, which is a minor gap for such a simple catalog tool.

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 with no filler. Every word contributes to explaining the tool's function, making it highly efficient.

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 list operation, the description states the essential scope and behavior. It could mention the shape of the returned categories, but the tool is simple enough that an agent can call it without additional context, and no output schema exists to supply that detail.

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?

There are zero parameters, so there is nothing for the description to add beyond the empty schema. The baseline for a parameterless tool is 4, and the description accurately reflects that no arguments are required.

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 verb ('List') and resource ('all available game categories/genres on Yandex Games'), making the tool's purpose unambiguous. This clearly distinguishes it from sibling tools like yagames-search or yagames-popular, which target game search or popular content rather than categories.

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 provides clear context: use this tool when the agent needs the full set of game categories/genres. It does not explicitly name alternatives or exclusion conditions, but no sibling directly overlaps with category listing, so the usage context is sufficient.

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

yagames-create-draftA

Create a new game draft in the Yandex Games Console. Requires YAGAMES_SESSION_COOKIE and YAGAMES_CSRF_TOKEN env vars

ParametersJSON Schema
NameRequiredDescriptionDefault
seoNoSEO description (50-160 chars)
tagsNoTags describing the game (max 20)
titleYesGame title (max 50 chars)
categoryYesGenre categories (max 2)
ageRatingYesAge rating
howToPlayYesHow to play instructions (100-1000 chars)
languagesYesLanguages the game supports (e.g. ["ru", "en"])
platformsYesSupported platforms: desktop, mobile_ios, mobile_android
cloudSavesNoWhether the game uses cloud saves via SDK
descriptionYesFull description (100-1000 chars)
orientationYesScreen orientation
developerCommentNoComment for moderation team (max 2048 chars)
shortDescriptionNoShort description (max 70 chars)

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden. It discloses a meaningful operational prerequisite — the two required auth env vars (YAGAMES_SESSION_COOKIE, YAGAMES_CSRF_TOKEN) — which is genuinely useful. However, it does not describe side effects, rate limits, or expected response behavior for the mutation it performs.

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 zero waste: the core purpose is front-loaded and the critical auth requirement immediately follows. 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 13-parameter create operation, the description covers the biggest hidden prerequisite (auth env vars) while all parameters are fully documented in the schema. The only gap is the absence of return-value/output information, which would help an agent track the created draft, but no output schema exists to offset this.

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 every parameter (title, category, ageRating, etc.) is already documented with constraints in the input schema. The tool description adds no parameter-level meaning beyond what the schema provides, so the 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 states a specific verb ('Create') and resource ('a new game draft in the Yandex Games Console'), making the tool's function immediately identifiable. The word 'new' also implies creation of a fresh draft, which distinguishes it from the yagames-update-draft sibling.

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?

Usage context is implied: 'Create a new game draft' signals this is for initial creation, contrasting with the update-draft sibling in the tool list. However, no explicit when-to-use guidance or exclusion statements are given; the description relies on inference.

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

yagames-list-my-gamesA

List all games uploaded to your developer account. Requires auth env vars

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries full burden. It adds the auth env var requirement and clarifies scope, but it does not state whether the operation is read-only, whether pagination applies, or what exact env vars are needed. The verb 'List' implies read-only, but specifics are sparse.

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?

A single sentence conveys the action, scope, and a critical prerequisite without filler. Every word adds value and the core behavior is front-loaded.

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 list operation, the description covers what it lists, whose account it lists, and that auth is required. It does not describe the return format or pagination, but the simple nature and explicit scope make it sufficiently complete for selection and invocation.

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 schema has zero parameters and no required inputs, so there is nothing for the description to explain. The baseline for no-parameter tools is 4, and the description correctly avoids inventing unnecessary parameter details.

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 ('List') and identifies a precise resource ('all games uploaded to your developer account'). The 'my games' scope clearly separates it from siblings like yagames-search or yagames-popular.

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 states an auth prerequisite and establishes the tool is for the developer's own games. However, it does not explicitly mention when to choose this over yagames-search or other siblings, leaving the decision partly inferred from the name.

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

yagames-publishA

Publish a game that has passed moderation. Requires auth env vars

ParametersJSON Schema
NameRequiredDescriptionDefault
appIdYesGame ID

TDQS

A4/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden. It adds the important requirement of auth env vars and implies a state transition from moderated to published. However, it does not disclose side effects (e.g., irreversibility, visibility changes, idempotency). For a simple one-parameter tool 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 a single sentence that front-loads the core action, then gives the critical precondition and authentication requirement. Every word earns its place 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 tool with one required parameter, no output schema, and no annotations, the description covers the essential aspects: what it does, when it is valid, and what environment prerequisites exist. It does not describe the result or response, but that is less critical given the simple nature of the 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 coverage is 100% and the schema already defines appId as 'Game ID'. The description does not add any additional meaning beyond connecting appId to the moderated game. This aligns with the baseline for full schema coverage.

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 ('Publish') and the resource ('a game'), with a specific precondition ('has passed moderation'). This distinguishes it from sibling tools like yagames-submit-moderation (submission) and yagames-update-draft (draft editing), so an agent can immediately grasp what this tool does.

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 conditions usage on the game having passed moderation, which is the key selection criterion among siblings. It does not explicitly name alternative tools for other states, but the precondition strongly implies when not to use it. This is clear context without formal exclusions.

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

yagames-statusA

Check the current status of a game (draft, moderation, publish). Requires auth env vars

ParametersJSON Schema
NameRequiredDescriptionDefault
appIdYesGame ID

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations provided, the description carries the burden of behavioral disclosure. It adds the useful requirement 'Requires auth env vars' and the verb 'Check' suggests a read-only operation, but it does not explicitly confirm the absence of side effects, describe error behavior, or mention any rate limits. This is adequate but 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 a single sentence that leads with the action and subject, then lists the relevant statuses and the auth requirement. Every word adds value and there is no redundancy.

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?

The tool has no output schema, so the description should clarify what the caller can expect in return. It lists the possible statuses but does not state the response format (e.g., a simple string versus a structured object), nor does it cover error cases like an unknown appId. It is sufficient for a basic understanding but lacks full contextual detail.

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 input schema already documents 'appId' as 'Game ID'. The description adds no further parameter meaning beyond the term 'game', which is consistent with the schema. Thus the baseline score of 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 states a specific verb ('Check') and resource ('current status of a game') and enumerates the possible status values. It is unmistakably distinct from sibling tools like yagames-search, yagames-upload-build, and yagames-publish, so an agent can immediately tell what this tool does.

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 when to use the tool: whenever the agent needs to know a game's lifecycle status. However, it does not explicitly name alternatives or state when not to use it, leaving the decision to inference rather than clear routing guidance.

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

yagames-submit-moderationA

Submit a game draft for moderation review. Takes 3-5 business days. Requires auth env vars

ParametersJSON Schema
NameRequiredDescriptionDefault
appIdYesGame ID

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries the burden of behavioral disclosure. It usefully reveals the 3-5 business day delay and auth requirement, but does not mention side effects like the draft becoming locked during review, whether resubmission is allowed, or what the response contains.

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 concise sentence that includes both the core action and two important operational details. Every word earns its place, with no redundant or filler content.

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?

For a one-parameter tool, the description gives adequate invocation context: what action is taken, how long it takes, and that auth is needed. However, it lacks guidance on how the agent should verify submission success or handle post-submission status, especially given no output schema.

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 only parameter appId is already described as 'Game ID'. The description adds no additional semantic detail about the parameter, so the baseline score of 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 states a specific verb ('Submit') and resource ('a game draft for moderation review'), which clearly distinguishes it from siblings like yagames-publish and yagames-update-draft. The meaning is immediately unambiguous.

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 mentions the moderation timeline and auth requirement, giving some operational context. However, it does not explicitly state when to use this tool versus the alternatives, such as publishing after approval or updating the draft before submission.

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

yagames-update-draftC

Update an existing game draft. Requires authentication env vars

ParametersJSON Schema
NameRequiredDescriptionDefault
tagsNo
appIdYesGame ID from the console
titleNo
categoryNo
ageRatingNo
howToPlayNo
languagesNo
platformsNo
cloudSavesNo
descriptionNo
orientationNo

TDQS

C2.7/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 disclose the authentication-env-var prerequisite, a genuine operational fact beyond the name. But it never states whether the update is a partial patch or full replacement, what happens if the draft is already in moderation, or whether changes affect a published game.

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?

Two short sentences, front-loaded with the action and resource, with the prerequisite in a clean second sentence. Nothing is wasted, though the terseness borders on under-specification for an 11-parameter mutation tool.

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

Completeness2/5

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

For a mutation tool with 11 parameters, no annotations, and no output schema, the description is under-equipped: no update semantics, no effect on moderation state, no return-value information. The auth note is the only contextual hint, and required-parameter semantics beyond 'appId is the console ID' are absent.

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

Parameters1/5

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

Schema coverage is only 9% — ten of eleven parameters (tags, title, category, howToPlay, languages, platforms, cloudSaves, description, orientation, ageRating) have no schema description — so the tool description must compensate. It provides zero information about any parameter: no guidance on which fields are updatable, how to format them, or how they interact.

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?

States a specific action ('Update') on a specific resource ('an existing game draft'), and the word 'existing' implicitly separates it from the sibling yagames-create-draft. However, it adds little beyond the tool name itself and relies on inference rather than explicitly naming distinguishing scope.

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?

Gives no guidance on when to use this tool versus its nine siblings. The 'Requires authentication env vars' note is a prerequisite, not a selection criterion; there is no mention that create-draft is for new drafts, that upload-build feeds drafts, or where update fits in the moderation/publish workflow.

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

yagames-upload-buildB

Upload a game ZIP archive as a new build. Requires authentication env vars

ParametersJSON Schema
NameRequiredDescriptionDefault
appIdYesGame ID from the console
versionNoVersion string (default: 0.0.0.1)
archivePathYesLocal path to the ZIP archive containing the game (must have index.html in root)

TDQS

B3.4/5.0
Behavior2/5

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

With no annotations, the description carries full behavioral disclosure burden. It only notes 'Requires authentication env vars' and the fact that it uploads. It does not disclose side effects, whether an existing build/version is overwritten, validation behavior, or expected results.

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 one focused sentence with no filler. It front-loads the primary purpose and adds a relevant auth requirement without wasting words.

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

Completeness2/5

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

For a mutating upload tool with no annotations and no output schema, the description is too sparse. It lacks guidance on selecting this tool over siblings, behavioral expectations, and any post-upload context. The auth note helps but does not make the definition complete.

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 all parameters and even adds a useful constraint about index.html in the archive root. The description itself adds no additional parameter-level meaning, so baseline 3 is appropriate.

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 verb ('Upload'), a specific resource ('a game ZIP archive'), and a clear outcome ('as a new build'). This distinguishes it from lifecycle siblings like yagames-update-draft, yagames-submit-moderation, and yagames-publish.

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 action itself implies when it should be used: when uploading a ZIP as a new build. However, there is no explicit guidance about when to prefer this over yagames-update-draft or other alternatives, and no mention of lifecycle or prerequisite steps beyond auth.

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. 10 tool updatesv0.1.0
    • First observedyagames-categories
    • First observedyagames-create-draft
    • First observedyagames-list-my-games
    • First observedyagames-popular
    • First observedyagames-publish
    • First observedyagames-search
    • First observedyagames-status
    • First observedyagames-submit-moderation
    • First observedyagames-update-draft
    • First observedyagames-upload-build

TDQS

A3.5/5.0

Scored across 10 tools

Disambiguation4/5

Most tools target distinct actions in the catalog or developer lifecycle. Search and popular both return catalog games but differ by keyword versus ranking, and status versus list-my-games have different scopes. These are minor overlaps, not true duplicates.

Naming Consistency3/5

All names share the consistent yagames- prefix and snake_case, but the action pattern is inconsistent: five use verb_noun like upload-build and create-draft, while others are bare verbs like search and publish, or nouns/adjectives like status, categories, and popular. This mixed convention is readable but not a uniform verb_noun scheme.

Tool Count5/5

Ten tools is well-scoped for the server's dual purpose of browsing the Yandex Games catalog and managing a developer's game lifecycle. No obvious bloat or overly narrow set.

Completeness4/5

The developer lifecycle is well covered: draft creation/update, build upload, moderation submission, publishing, and status checks are all present, plus catalog browsing via search, popular, and categories. Minor gaps exist such as no delete/unpublish or detailed single-game get, but agents can complete the primary workflow.

Maintenance

ActivityStale
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    MCP server for Yandex Disk that enables file and folder management, search, upload/download, publishing, and trash operations through natural language.
    22
    MIT
  • A
    license
    A
    quality
    F
    maintenance
    MCP server for interacting with Yandex.Webmaster API to manage sites, retrieve search queries, and check indexing status. Requires an OAuth token.
    13
    71
    3
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    MCP server that enables AI assistants to interact with Yandex 360 organization services, currently supporting Yandex Wiki for reading, editing, and searching pages.
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/PETERGS27/YaGamesMCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server