trackmcp
Back to directory
adacreativeco

ada-turbo-ai-mcp

View on GitHub

ADA Creative Co. Agency OS delivers 20+ AI roles over MCP (Model Context Protocol) and a retro Pixel Office Web Visualizer.

2 stars PythonOthers Updated Aug 22, 2026
agency-osai-agentsantigravityawesome-mcpclaudecursorfastapigeminillmllm-toolsmcpmcp-servermodel-context-protocolmulti-agentopenaipixel-artpythonretro-ui

Documentation

ADA Turbo β€” Agency OS & Pixel Office


🎬 Live Office & Animation Preview

🏒 Pixel Office VisualizerπŸ§ͺ CRT Workflow Playground
!Pixel Office Dashboard!CRT Workflow Playground

⚑ Quick Start (Run in 10 Seconds)

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

bash
uvx ada-turbo-ai-mcp

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


Option B: Standard Git / Python

bash
# 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`:

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):

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

3. Claude Desktop

Add to your `claude_desktop_config.json`:

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

4. Claude Code (CLI)

bash
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

code
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.**

Frequently asked questions

What is ada-turbo-ai-mcp?

ada-turbo-ai-mcp is ADA Creative Co. Agency OS delivers 20+ AI roles over MCP (Model Context Protocol) and a retro Pixel Office Web Visualizer.

How do I install ada-turbo-ai-mcp?

Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

Is ada-turbo-ai-mcp open source?

Yes β€” it is hosted on GitHub at https://github.com/adacreativeco/ada-turbo-ai-mcp and has 2 stars.

Related MCP tools

riponcmprojectmem

Open-source coding agent memory. Records issues, attempts, fixes and decisions, then warns your agent before it repeats an approach that already failed. Native MCP server for Claude Code, Cursor, Antigravity and Codex. 100% local, no cloud, no telemetry. MIT.

796 Python
ai-agentsai-memoryai-tools+17
IvanMurzakUnity-MCP

AI Skills, MCP Tools, and CLI for Unity Engine. Full AI develop and test loop. Use cli for quick setup. Efficient token usage, advanced tools. Any C# method may be turned into a tool by a single line. Works with Claude Code, Gemini, Copilot, Cursor and any other absolutely for free.

4,137 C#
aiai-integrationgame-development+16
jgravellejcodemunch-mcp

Cut AI token costs 95%+ on code exploration. The leading MCP server for precise, symbol-level GitHub code retrieval via tree-sitter AST. Works with Claude Code, Cursor & any MCP client. 313B+ tokens saved.

2,651 Python
claudeclaude-codeai-coding+17
OpenOSINTOpenOSINT

AI-powered OSINT agent with interactive REPL, MCP server, and CLI. 19 tools. Works with Claude, GPT-4, or local models. For authorized security research only.

1,523 Python
ai-agentanthropicclaude+16
CoplayDevunity-mcp

Unity MCP acts as a bridge between AI assistants and your Unity Editor. Give your LLM tools to manage assets, control scenes, edit scripts, and automate tasks within Unity.

13,915 C#
aiai-integrationmcp+13
atlassianatlassian-mcp-server

Official remote MCP server for Atlassian. Securely connect Jira, Confluence, Jira Service Management, Bitbucket, and Compass to Claude, ChatGPT, Cursor, VS Code, and other AI tools using OAuth 2.1 or API tokens.

1,015 JavaScript
aiai-agentsatlassian+17

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP