๐จ Create visual art and games with AI - An MCP (Model Context Protocol) server that enables AI assistants to create and run Processing sketches directly through natural language commands.
โญ Give us a star if you find this useful!
Watch the demo video here - See it in action!
-
Clone this repository:
git clone https://github.com/twelve2five/processing-mcp-server.git cd processing-mcp-server -
Install dependencies:
uv pip install fastmcp # or pip install fastmcp -
Configure Claude Desktop (see Configuration section below)
-
Restart Claude and start creating!
- ๐ Create and run Processing sketches from AI conversations
- ๐พ Automatically saves sketches with timestamps
- โ๏ธ Configurable Processing executable path and save location
- ๐ค Simple tool interface for AI assistants
- ๐ฎ Includes 6 ready-to-run demos (particles, 3D art, games, and more!)
- Python 3.8+
- Processing installed on your system
uvpackage manager (or use pip)- Claude Desktop app
git clone https://github.com/twelve2five/processing-mcp-server.git
cd processing-mcp-serveruv pip install fastmcppip install fastmcpSee the Configuration section below to add the server to your Claude Desktop config.
The server can be configured in two ways:
Set these environment variables before running the server:
PROCESSING_PATH: Path to your Processing executablePROCESSING_SAVE_LOCATION: Directory where sketches will be saved
Add this to your Claude Desktop config file:
Windows (%APPDATA%\Claude\claude_desktop_config.json):
{
"mcpServers": {
"processing": {
"command": "uv",
"args": [
"run",
"C:\\path\\to\\processing-mcp-server\\processing_mcp_server.py"
],
"env": {
"PROCESSING_PATH": "C:\\Program Files\\Processing\\Processing.exe",
"PROCESSING_SAVE_LOCATION": "C:\\Users\\YourUsername\\Documents\\Processing\\sketches"
}
}
}
}macOS (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"processing": {
"command": "uv",
"args": [
"run",
"/path/to/processing-mcp-server/processing_mcp_server.py"
],
"env": {
"PROCESSING_PATH": "/Applications/Processing.app/Contents/MacOS/Processing",
"PROCESSING_SAVE_LOCATION": "~/Documents/Processing/sketches"
}
}
}
}Linux (~/.config/Claude/claude_desktop_config.json):
{
"mcpServers": {
"processing": {
"command": "uv",
"args": [
"run",
"/path/to/processing-mcp-server/processing_mcp_server.py"
],
"env": {
"PROCESSING_PATH": "/usr/bin/processing",
"PROCESSING_SAVE_LOCATION": "~/Documents/Processing/sketches"
}
}
}
}Note: Replace /path/to/processing-mcp-server/ with the actual path where you cloned the repository.
After updating the configuration file, restart Claude Desktop for the changes to take effect.
Once configured, you can ask your AI assistant to:
- "Create a Processing sketch that draws a bouncing ball"
- "Make a colorful spiral animation"
- "Draw a clock that shows the current time"
- "Create a particle system that follows my mouse"
- "Make fireworks that explode when I click"
- "Generate a starfield simulation"
- "Build a Snake game"
- "Create a Pong clone"
- "Make a simple maze game"
- "Create a generative art piece with flowing waves"
- "Make a 3D rotating geometric shape"
- "Generate the Matrix digital rain effect"
Check out the /examples folder for ready-to-run demos:
- bouncing_ball.pde - Classic animation with trail effects
- particle_system.pde - Interactive particles following your mouse
- 3d_geometric_art.pde - Mesmerizing 3D shapes with rainbow colors
- matrix_rain.pde - The iconic Matrix digital rain effect
- wave_art.pde - Beautiful animated wave patterns
- snake_game.pde - Fully playable Snake game
The AI will use the run_processing_java_cli tool to create and launch your sketch.
Creates and runs a Processing sketch.
Parameters:
java_code(required): The Processing sketch codeprocessing_path(optional): Override the default Processing executable pathsave_location(optional): Override the default save location
Returns the current server configuration.
If no configuration is provided, the server uses these defaults:
- Processing Path:
processing(assumes Processing is in your system PATH) - Save Location:
~/Documents/Processing/sketches
Make sure to restart Claude Desktop after updating the configuration file.
If you get a "Processing executable not found" error:
- Ensure Processing is installed
- Check that the path in your configuration is correct
- On Windows, use double backslashes (
\\) in the path - On macOS, the path should point to the executable inside the .app bundle
Make sure the save location directory exists and is writable by your user.
Contributions are welcome! Please feel free to submit a Pull Request.
MIT License - see LICENSE file for details