FrootAI — AmpliFAI your AI Ecosystem Get Started

FAI Packages Setup

Choose your preferred distribution channel. All deliver the full FAI Toolkit (DevKit + TuneKit + SpecKit). Developers: VS Code or CLI · Python teams: PyPI · DevOps: Docker · Agents: npm MCP.

npm Part 1: MCP Server Setup

Add AI architecture knowledge to any agent. Works with Claude Desktop, VS Code Copilot, Cursor, Windsurf, Microsoft Foundry.

Prerequisites

  • Node.js 18+Download here
  • GitDownload here
  • An MCP client — VS Code, Claude Desktop, Cursor, Windsurf, or Microsoft Foundry

Step 1: Install

Option A: npm (Recommended — zero clone)

Terminal
# Run directly (no install needed)
npx frootai-mcp@latest

# OR install globally
npm install -g frootai-mcp@latest
frootai-mcp

Option B: Docker (no Node.js needed)

Terminal
docker run -i ghcr.io/frootai/frootai-mcp

Option C: From GitHub

Terminal
git clone https://github.com/frootai/frootai.git
cd frootai/mcp-server
npm install

Step 2: Connect to Your Client

Claude Desktop / Cursor / Windsurf

claude_desktop_config.json
{
  "mcpServers": {
    "frootai": {
      "command": "npx",
      "args": ["frootai-mcp"]
    }
  }
}

Restart Claude Desktop. FrootAI appears in your tools list.

Part 2: VS Code Extension

Browse plays, init DevKit, search terms — right from your editor.

Terminal
code --install-extension frootai.frootai-vscode

Or: Ctrl+Shift+X → search "FrootAI" → Install

Solution Plays (104)MCP Tools (45)Knowledge Hub (18)AI Glossary (200+)

Part 3: CLI

Ships with the MCP Server package. No extra install.

Terminal
npx frootai init        # Interactive project scaffolding
npx frootai search RAG  # Search knowledge base
npx frootai cost 01 dev # Estimate Azure costs
npx frootai doctor      # Check environment

Docker Part 4: Docker

Zero Node.js required. Multi-arch (amd64 + arm64).

Terminal
docker run -i --rm ghcr.io/frootai/frootai-mcp:latest

Python Part 5: Python

Offline-first SDK + MCP Server. Zero external dependencies.

Python SDK
pip install frootai

Solution plays, cost estimation, evaluation, A/B testing — all offline.

Python MCP Server
pip install frootai-mcp

Same MCP tools as the Node MCP server, pure Python. Works with any MCP-compatible client.