Skip to main content

ADA Turbo โ€” Agency OS & Pixel Office

MCP Python License Smithery GitHub Stars Case Study


๐Ÿ‡บ๐Ÿ‡ธ English Documentation | ๐Ÿ‡น๐Ÿ‡ท Tรผrkรงe Dokรผmantasyon

Transform your IDE into a full-scale creative agency.
ADA Turbo delivers the ADA Creative Co. agency operating system with 26 specialized AI roles via MCP (Model Context Protocol), paired with a real-time retro CRT Pixel Office Visualizer.


๐ŸŽฌ Live Office & Animation Preview

Pixel Office Characters Walking Animation

๐Ÿข Pixel Office Visualizer ๐Ÿงช CRT Workflow Playground
Pixel Office Dashboard CRT Workflow Playground

โšก Quick Start (Run in 10 Seconds)

Option A: Zero-Install with uvx (Recommended)

You can run ADA Turbo instantly without cloning or managing virtual environments:

uvx ada-turbo-ai-mcp

(Or launch just the web visualizer: uvx ada-turbo-ai-mcp --web)


Option B: Standard Git / Python

# 1. Clone the repository
git clone https://github.com/adacreativeco/ada-turbo-ai-mcp.git
cd ada-turbo-ai-mcp

# 2. Install dependencies
pip install -r requirements.txt

# 3. Start Unified Dual-Mode (MCP stdio + Web Visualizer)
python server.py

Open http://localhost:8000 (auto-fallback to 8001, 8002... if occupied) in your browser.


๐Ÿš€ Key Features

  • Unified Dual-Mode Architecture:
    • MCP Mode (Default): Runs as an MCP stdio server. Concurrently starts the Pixel Office Web Server in the background. Seamlessly connects to Antigravity, Claude Desktop, Cursor, Claude Code, and Windsurf.
    • Pixel Office Web Mode: Starts a local, highly-optimized retro CRT-effect web workspace (python server.py --web).
  • โšก Real-Time Server-Sent Events (SSE):
    • Zero-latency event streaming (/api/events). When an agent is triggered in your IDE, the corresponding character visually walks to their desk in real-time!
  • ๐Ÿง  Direct Live LLM Engine:
    • Multi-provider AI execution directly in the browser via /api/llm-generate:
      • ๐ŸŸข Built-in Template Engine (Offline): Instant access to professional agency workflow templates without API keys.
      • โœจ Google Gemini: gemini-2.0-flash, gemini-1.5-flash, gemini-1.5-pro
      • ๐Ÿง  OpenAI: gpt-4o-mini, gpt-4o, o3-mini
      • โšก Anthropic Claude: claude-3-5-sonnet-20241022, claude-3-5-haiku-20241022
    • Safe local credential storage in browser localStorage.
  • Developer Tools (CRT Console Modals):
    • Playground (Workflow & Live AI Tester): Select commands and test tasks with offline templates or live LLM models with typewriter output.
    • AI Model Configurator: Switch providers, enter API keys safely, and select model presets.
    • Setup Wizard: Dynamically outputs ready-to-copy configuration blocks for Cursor, Antigravity, Claude Desktop, and Claude Code.
  • Pixel Characters & Animations: 26 unique agency characters with idle (breathing, blinking) and walking cycles across custom office floors.
  • Full Bilingual Support (TR / EN): One-click toggle for all UI elements, status badges, modals, agent prompts, and knowledge references.

๐Ÿ”Œ IDE Integration (MCP)

1. Antigravity

Add to your mcp_config.json:

{
  "mcpServers": {
    "ada-turbo": {
      "command": "uvx",
      "args": ["ada-turbo-ai-mcp"]
    }
  }
}

2. Cursor

Add to ~/.cursor/mcp.json (global) or .cursor/mcp.json (project-level):

{
  "mcpServers": {
    "ada-turbo": {
      "command": "uvx",
      "args": ["ada-turbo-ai-mcp"]
    }
  }
}

3. Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "ada-turbo": {
      "command": "uvx",
      "args": ["ada-turbo-ai-mcp"]
    }
  }
}

4. Claude Code (CLI)

claude mcp add ada-turbo -- uvx ada-turbo-ai-mcp

(Note: If using local clone, replace "command": "uvx" and "args": ["ada-turbo-ai-mcp"] with "command": "python" and "args": ["/ABSOLUTE/PATH/server.py"])


๐Ÿ‘ฅ 26 Agency Roles & Specializations

ADA Turbo organizes 26 specialized agents across 5 key departments:

  1. Strategy & Brand: Brand Director, Brand Strategist, Consumer Insight Lead, Naming Specialist, Creative Technologist.
  2. Creative & Design: Creative Director, Senior Copywriter, Art Director, UX/UI Lead, 3D/Motion Designer.
  3. Marketing & Growth: Growth Marketing Director, Performance Marketing Specialist, SEO/Content Strategist, Social Media Lead, CRM & Retention Manager.
  4. Client & Operations: Account Director, Senior Account Manager, Agency Producer, Operations Director, Traffic Manager.
  5. Analytics & Tech: Chief Data Officer, Marketing Data Analyst, Full-Stack Lead, AI Solutions Architect, QA & Delivery Lead.

๐Ÿ“‚ Architecture

ada-turbo-mcp/
โ”œโ”€โ”€ server.py                   โ† Unified dual-mode entry point (MCP + Web)
โ”œโ”€โ”€ index.html                  โ† Retro CRT Pixel Office single-page UI
โ”œโ”€โ”€ pyproject.toml              โ† Package metadata & entry points
โ”œโ”€โ”€ smithery.yaml               โ† Smithery.ai 1-click install configuration
โ”œโ”€โ”€ requirements.txt            โ† Project dependencies
โ”œโ”€โ”€ references/                 โ† Bilingual domain knowledge bases (.md)
โ”‚   โ”œโ”€โ”€ strategy-brand.md / strateji-marka.md
โ”‚   โ”œโ”€โ”€ creative-team.md / yaratici-ekip.md
โ”‚   โ”œโ”€โ”€ marketing-growth.md / pazarlama-buyume.md
โ”‚   โ”œโ”€โ”€ client-operations.md / musteri-operasyon.md
โ”‚   โ””โ”€โ”€ analytics-product-tech.md / analitik-urun-teknik.md
โ”œโ”€โ”€ karakterler/                โ† Pixel character graphics and generator scripts
โ”œโ”€โ”€ animasyonlar/               โ† Character walk/idle spritesheets & GIF previews
โ”œโ”€โ”€ office-bina/ & office-zon/  โ† Procedural pixel art building generation assets
โ”œโ”€โ”€ skill/                      โ† Pre-packaged .skill distribution bundle
โ””โ”€โ”€ src/                        โ† Python modules
    โ”œโ”€โ”€ mcp_server.py           โ† FastMCP server definitions & tool registrations
    โ”œโ”€โ”€ web_server.py           โ† Multi-threaded HTTP server, SSE broadcaster & LLM proxy
    โ””โ”€โ”€ workflow_manager.py     โ† Command routing, action listener dispatch & templates

๐Ÿ“„ License

Distributed under the PolyForm Noncommercial License 1.0.0. See LICENSE for details.

Developed with โค๏ธ by ADA Creative Co.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ada_turbo_ai_mcp-1.0.0.tar.gz (3.7 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ada_turbo_ai_mcp-1.0.0-py3-none-any.whl (1.4 MB view details)

Uploaded Python 3

File details

Details for the file ada_turbo_ai_mcp-1.0.0.tar.gz.

File metadata

  • Download URL: ada_turbo_ai_mcp-1.0.0.tar.gz
  • Upload date:
  • Size: 3.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.10

File hashes

Hashes for ada_turbo_ai_mcp-1.0.0.tar.gz
Algorithm Hash digest
SHA256 6ace50f819a7479c52c60e8bf62f9ff57285b9ddb0cd25f016489ed4abb5035f
MD5 1696599172c2d5ced19586333e4206fc
BLAKE2b-256 c8ffebbf3e5e59a87324145421a615d9d843943f78a0258555482b0cc7b43bbd

See more details on using hashes here.

File details

Details for the file ada_turbo_ai_mcp-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for ada_turbo_ai_mcp-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 33e1cd3041acd47959958db5605db9aa4c8d4c30ab72561daae48d37fb4b64c6
MD5 07ef599d09ed366165f8725945ea65ae
BLAKE2b-256 56298da9e59376a1ab31723a9681a3a7da3eeec36d69fd28aa92a64a21af2e8e

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.0.0 This release

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page