Slot Starters:

Find the perfect template — and slot it in

Slot Logo

Slot is an MCP server that allows LLMs to find you the perfect template for your next AI-first project based on the requirements and preferences you describe.

Why Slot?

AI-Powered Discovery

Find relevant templates through natural conversations with your AI assistant

Smart Analysis

Understand template features, quality metrics, and tradeoffs

Informed Decisions

Make better choices with AI-guided template selection

MCP Installation

1. Clone the repository and install dependencies

bash
git clone https://github.com/thisistheaj/slot-starters.git
cd slot-starters
npm install

2. Add the Slot MCP server to your Claude Desktop config

bash
mkdir -p ~/Library/Application\ Support/Claude && cat > ~/Library/Application\ Support/Claude/claude_desktop_config.json << EOL
{
  "mcpServers": {
    "slot-starters": {
      "command": "node",
      "args": [
        "$(pwd)/server.js"
      ]
    }
  }
}
EOL