arcadey-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@arcadey-mcplist my games"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Cool GPT Games — SDK, CLI & MCP
Official developer tooling for publishing and managing games on
coolgptgames.com. Everything here talks to the public
Arcadey API (https://api.coolgptgames.com) with an API key you mint from your
dashboard → API keys.
This repo contains four packages, all dependency-free (Node built-ins + fetch):
Package | What it is |
Typed TypeScript client for the publishing API (create, upload, publish, track, tournaments, webhooks). | |
Command-line tool — publish from your terminal or CI. | |
MCP server so Claude / agents can manage your games. | |
Source + types for the in-game |
Quickstart
Mint a key (arc_live_…) at coolgptgames.com/dashboard/keys, then:
SDK (Node / TypeScript)
import { ArcadeyClient } from "@arcadey/sdk";
const arc = new ArcadeyClient({ apiKey: process.env.ARCADEY_API_KEY! });
const { slug, status, playUrl } = await arc.publish({
title: "My Game",
category: "arcade",
files: [{ path: "index.html", content: "<html>…</html>" }],
});The client defaults to the production API. Point it elsewhere with
new ArcadeyClient({ apiKey, baseUrl }).
CLI
arcadey login arc_live_xxx # saves ~/.arcadey/config.json
arcadey publish ./my-game # zips the folder, reads my-game/game.json
arcadey status <gameId> # status + moderation feedback
arcadey games # list your gamesSet ARCADEY_API_URL to override the API origin.
MCP (Claude / agents)
ARCADEY_API_KEY=arc_live_xxx arcadey-mcpRegister arcadey-mcp in your MCP client (e.g. Claude Desktop) with
ARCADEY_API_KEY in its environment.
In-game SDK
Inside a game bundle, include the bridge (served from the game CDN) and call the
GameSDK global:
<script src="https://cdn.coolgptgames.com/sdk/game-sdk.js"></script>
<script>
GameSDK.ready();
GameSDK.trackEvent("level_complete", { level: 3, score: 900 });
</script>The @arcadey/game-sdk package is the source of that bridge —
useful for types and reading how it works.
Related MCP server: agent-skill-loader
Development
npm install
npm run typecheck
npm testEverything runs straight from TypeScript via tsx — no build step.
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceMCP server for managing Claude Code conversation sessions12503MIT
- AlicenseAqualityBmaintenanceMCP server to dynamically load Claude Code skills into AI agents57514MIT
- FlicenseBqualityDmaintenanceMCP server that proxies GPT API calls for Claude Code, supporting multiple GPT models with both standard and streaming responses.2
- AlicenseAqualityDmaintenanceMCP server for Claude Code to interact with OpenClaw AI agents (Daemon, Soren, Ash, etc.) via the gateway API, providing tools to ask agents, list them, and check their status.3156MIT
Related MCP Connectors
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
MCP server for AI dialogue using various LLM models via AceDataCloud
ArcAgent MCP server for bounty discovery, workspace execution, and verified coding submissions.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/alphajew420/arcadey-sdk'
If you have feedback or need assistance with the MCP directory API, please join our Discord server