🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

rosh-mcp

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rosh-mcp

MCP server for Rosh — give any AI the power to create interactive web apps, games, and 3D scenes

pipPyPI
Version
0.1.0
Weekly downloads
17
-22.73%
Maintainers
1
Weekly downloads
 

Rosh MCP Server

Give any AI the power to create and publish interactive web apps, games, and 3D scenes using Rosh — a plain-English programming language.

What is Rosh?

Rosh lets you write programs in plain English:

create box called player at 400 300
set player color "blue"
on key "ArrowRight" then set player x to player x + 5

This compiles to a runnable HTML5 canvas app, a Phaser game, or a Three.js 3D scene — depending on the target.

Quick Start

Claude Desktop / Claude Code

Add to your MCP config (~/.claude/mcp.json or Claude Desktop settings):

{
  "mcpServers": {
    "rosh": {
      "command": "uvx",
      "args": ["rosh-mcp"],
      "env": {
        "ROSH_API_KEY": "rosh_k1_your_key_here"
      }
    }
  }
}

Cursor / Windsurf

Same config format — add to your MCP settings file.

Get an API Key

  • Create an account at rosh.cloud
  • Go to Settings → API Keys
  • Create a key with read,write scopes

Note: rosh_docs and rosh_compile work without an API key. You only need a key for publishing.

Tools

ToolDescriptionAuth Required
rosh_docsGet the full Rosh language referenceNo
rosh_compileCompile Rosh code to HTMLNo
rosh_publishPublish a program to rosh.cloudYes (write)
rosh_list_programsList your programsYes (read)
rosh_get_programGet program details by IDYes (read)
rosh_update_programUpdate an existing programYes (write)
rosh_delete_programDelete a programYes (write)
rosh_hide_programHide a program (moderation)Yes (moderate)
rosh_show_programUnhide a programYes (moderate)

Example Prompts

Try these with any MCP-capable AI:

  • "Build me a space shooter game" — AI reads docs, writes Rosh code, compiles to Phaser
  • "Create a 3D rotating sculpture" — compiles to Three.js
  • "Make an interactive dashboard with buttons and counters" — compiles to web
  • "Show me what Rosh can do" — AI calls rosh_docs and explores

Environment Variables

VariableRequiredDefaultDescription
ROSH_API_KEYFor publishingYour rosh.cloud API key
ROSH_API_BASENohttps://rosh.cloudAPI base URL

Development

git clone https://github.com/rosh-studio/rosh-mcp.git
cd rosh-mcp
pip install -e .
rosh-mcp  # runs the stdio server

License

MIT

Keywords

3d

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts