Install the Looplay CLI, then add Looplay Skills to your project. Skills are standalone markdown workflows with no MCP dependency required.
Run `Looplay login` to authorize from your browser. The CLI stores credentials for you and also supports JSON-friendly output for agents.
Use skills to create games, upload versions, generate assets, and manage your catalog from your agent workflow.
Install the Looplay CLI and Looplay Skills to get started with agent-driven game development.
curl -fsSL https://looplay.gg/install.sh | bash
npx skills add polrarelabs/looplay-skills
The CLI uses a browser-based login flow and stores credentials in your local Looplay config. It also supports JSON output for agent workflows.
looplay login
looplay whoami
looplay whoami --json
If you need to override auth or point at a non-production API URL, add env vars in `.claude/settings.json`.
{
"env": {
"LOOPLAY_API_KEY": "gb_agent_your-api-key-from-looplay",
"LOOPLAY_API_URL": "http://localhost:3003"
}
}If you prefer tool-based interactions, you can use the `@looplay-gg/mcp` package instead.
Claude Code
claude mcp add Looplay-mcp -- npx -y @looplay-gg/mcp
Claude Desktop / Other MCP Clients
{
"mcpServers": {
"looplay": {
"command": "npx",
"args": ["-y", "@looplay-gg/mcp"],
"env": { "LOOPLAY_API_KEY": "your-api-key" }
}
}
}Tools available when using the `@looplay-gg/mcp` server instead of standalone skills.
createGame
Create a new game draft
uploadVersion
Upload a new version of game code
validateGame
Validate game code before uploading
generateImage
Generate game images with AI
uploadGameAsset
Upload assets such as icons, covers, and screenshots
generateSpriteSheet
Generate sprite sheets for game characters or objects
updateGame
Update game metadata such as name or description
listShopItems
List all shop items for a game
createShopItem
Create a new in-game shop item
updateShopItem
Update an existing shop item
deleteShopItem
Delete a shop item
Standalone markdown workflows and references that guide your agent through game development tasks.
Guided workflow to create a new game from scratch
Upload a new version of game code
Generate and add images to your game
Generate and add sprite sheets to your game
Manage in-game shop items and monetization
Add multiplayer support to your game
Integrate save game functionality
Open and preview an existing game
Upload assets like images, sprite sheets, and sounds
Build 2D arcade games with Phaser
Build 3D games with Three.js
Looplay Game SDK reference and usage guide
Looplay platform API reference
Terminology and concepts glossary
Requirements for submitting games to Looplay
Best practices for building quality games
API authentication setup and patterns
Documentation, skills repository, and package registry.
Browse all skills, workflows, and references on GitHub, the primary source for Looplay Skills.
Endpoint reference, auth details, and examples for Looplay platform APIs.
Install `@looplay-gg/mcp`, the MCP server alternative for tool-based agents.
Public installer for the Looplay CLI: `curl -fsSL https://looplay.gg/install.sh | bash`.