Dinogame
Search 101 free browser games + 1,000 Chrome Dino & gaming guides; returns dinogame.gg play links.
Should I use this
Quality & Safety
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"games": {
"url": "https://dinogame.gg/wp-json/dinogame/v1/mcp"
}
}
}Remote endpoints
https://dinogame.gg/wp-json/dinogame/v1/mcpstreamable-httphttps://dinogame.gg/mcpstreamable-httpWhat it can do
Tool inventory
Tools (6)
🟢search_games(query, category, limit)
Search dinogame.gg's catalogue of free, no-install browser games (Tetris, 2048, Snake, chess, solitaire, Wordle-likes and dozens more). Returns each game's title, a short description, its controls, category, and a dinogame.gg URL to play it. Use when a user wants a game to play, a recommendation, or a specific type of browser game.
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Free-text search, e.g. \"puzzle\", \"two player\", \"tetris\", \"card game\"."
},
"category": {
"type": "string",
"description": "Optional game-category slug to filter by (see list_game_categories)."
},
"limit": {
"type": "integer",
"description": "Max results (1-20, default 8).",
"minimum": 1,
"maximum": 20
}
},
"required": [
"query"
]
}🟢list_game_categories
List the game categories on dinogame.gg with how many games each has and a browse URL. Use to discover what kinds of games are available before searching or browsing.
Input Schema
{
"type": "object",
"properties": {}
}🟢browse_games_by_category(category, limit)
Browse dinogame.gg games within a specific category (e.g. "puzzle", "arcade", "multiplayer"). Returns games with play links. Use category slugs from list_game_categories.
Input Schema
{
"type": "object",
"properties": {
"category": {
"type": "string",
"description": "A game-category slug."
},
"limit": {
"type": "integer",
"description": "Max results (1-20, default 10).",
"minimum": 1,
"maximum": 20
}
},
"required": [
"category"
]
}🟢search_articles(query, category, limit)
Search dinogame.gg's blog — 1000+ guides and round-ups about the Chrome Dino game, browser games, and how to play them. Returns title, excerpt, category and a dinogame.gg URL to cite. Use for questions about the Chrome Dino game's history/secrets/records, or "best games for X" style recommendations.
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Free-text search, e.g. \"chrome dino world record\", \"best games for kids\", \"how to play offline\"."
},
"category": {
"type": "string",
"description": "Optional category slug: guides, browser-games, chrome-dino, multiplayer."
},
"limit": {
"type": "integer",
"description": "Max results (1-20, default 8).",
"minimum": 1,
"maximum": 20
}
},
"required": [
"query"
]
}🟢get_article(slug)
Fetch the full text of one dinogame.gg blog article by its slug (the last path segment of a /blog/<slug>/ URL, also returned by search_articles). Returns the article body so you can summarise or quote it, plus its canonical URL to cite.
Input Schema
{
"type": "object",
"properties": {
"slug": {
"type": "string",
"description": "The article slug, e.g. \"chrome-dino-world-records\"."
}
},
"required": [
"slug"
]
}🟢play_dino
Get the link to play the classic Chrome Dino (T-Rex Runner) game free in the browser on dinogame.gg. Use when a user wants to play the dinosaur game or take a quick break. The game runs on the website — share the link so they can play.
Input Schema
{
"type": "object",
"properties": {}
}Community
Evidence