get_game

Pack: boardgames · Endpoint: https://gateway.pipeworx.io/boardgames/mcp

Get full details for a specific board game by ID (from search_games results). Returns name, year, players, playtime, description, rating, publisher, designer, and price.

Parameters

NameTypeRequiredDescription
idstringyesBoard Game Atlas game ID (e.g. “OIXt3DmJU0” for Catan)

Example call

Arguments

{
  "id": "OIXt3DmJU0"
}

curl

curl -X POST https://gateway.pipeworx.io/boardgames/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_game","arguments":{"id":"OIXt3DmJU0"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_game', {
  "id": "OIXt3DmJU0"
});

Response shape

Always returns: id, name, year_published, min_players, max_players, min_playtime, max_playtime, min_age, description, image_url, thumb_url, url, price, msrp, average_user_rating, num_user_ratings, rank, trending_rank, primary_publisher, primary_designer

FieldTypeDescription
idstringBoard Game Atlas game ID
namestringGame name
year_publishednumber | nullYear the game was published
min_playersnumber | nullMinimum number of players
max_playersnumber | nullMaximum number of players
min_playtimenumber | nullMinimum playtime in minutes
max_playtimenumber | nullMaximum playtime in minutes
min_agenumber | nullMinimum recommended age
descriptionstring | nullPreview of the game description
image_urlstring | nullFull-size image URL
thumb_urlstring | nullThumbnail image URL
urlstring | nullBoard Game Atlas URL for the game
pricestring | nullCurrent price
msrpnumber | nullManufacturer suggested retail price
average_user_ratingnumber | nullAverage user rating
num_user_ratingsnumber | nullNumber of user ratings
ranknumber | nullOverall rank
trending_ranknumber | nullTrending rank
primary_publisherstring | nullPrimary publisher name
primary_designerstring | nullPrimary designer name
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Board Game Atlas game ID"
    },
    "name": {
      "type": "string",
      "description": "Game name"
    },
    "year_published": {
      "type": [
        "number",
        "null"
      ],
      "description": "Year the game was published"
    },
    "min_players": {
      "type": [
        "number",
        "null"
      ],
      "description": "Minimum number of players"
    },
    "max_players": {
      "type": [
        "number",
        "null"
      ],
      "description": "Maximum number of players"
    },
    "min_playtime": {
      "type": [
        "number",
        "null"
      ],
      "description": "Minimum playtime in minutes"
    },
    "max_playtime": {
      "type": [
        "number",
        "null"
      ],
      "description": "Maximum playtime in minutes"
    },
    "min_age": {
      "type": [
        "number",
        "null"
      ],
      "description": "Minimum recommended age"
    },
    "description": {
      "type": [
        "string",
        "null"
      ],
      "description": "Preview of the game description"
    },
    "image_url": {
      "type": [
        "string",
        "null"
      ],
      "description": "Full-size image URL"
    },
    "thumb_url": {
      "type": [
        "string",
        "null"
      ],
      "description": "Thumbnail image URL"
    },
    "url": {
      "type": [
        "string",
        "null"
      ],
      "description": "Board Game Atlas URL for the game"
    },
    "price": {
      "type": [
        "string",
        "null"
      ],
      "description": "Current price"
    },
    "msrp": {
      "type": [
        "number",
        "null"
      ],
      "description": "Manufacturer suggested retail price"
    },
    "average_user_rating": {
      "type": [
        "number",
        "null"
      ],
      "description": "Average user rating"
    },
    "num_user_ratings": {
      "type": [
        "number",
        "null"
      ],
      "description": "Number of user ratings"
    },
    "rank": {
      "type": [
        "number",
        "null"
      ],
      "description": "Overall rank"
    },
    "trending_rank": {
      "type": [
        "number",
        "null"
      ],
      "description": "Trending rank"
    },
    "primary_publisher": {
      "type": [
        "string",
        "null"
      ],
      "description": "Primary publisher name"
    },
    "primary_designer": {
      "type": [
        "string",
        "null"
      ],
      "description": "Primary designer name"
    }
  },
  "required": [
    "id",
    "name",
    "year_published",
    "min_players",
    "max_players",
    "min_playtime",
    "max_playtime",
    "min_age",
    "description",
    "image_url",
    "thumb_url",
    "url",
    "price",
    "msrp",
    "average_user_rating",
    "num_user_ratings",
    "rank",
    "trending_rank",
    "primary_publisher",
    "primary_designer"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "boardgames": {
      "url": "https://gateway.pipeworx.io/boardgames/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026