Skip to main content
Glama
README.md
# 🚀 Groq Model Context Protocol (MCP) Server

An official, ultra-fast **Model Context Protocol (MCP)** server enabling AI tools (Claude Desktop, Cursor, Antigravity) to route high-speed inference, fast completions, and code analysis to **Groq's LLaMA 3.3 70B** engine.

---

## ⚡ Features

* **`groq_fast_chat`**: Ultra-fast LLM completion using `llama-3.3-70b-versatile`.
* **`groq_summarize_code`**: Instant code analysis, architectural breakdown, and bug checking.
* **Standard Stdio Interface**: Fully compliant with the Anthropic Model Context Protocol specification.

---

## 🛠️ Installation

```bash
pip install mcp-server-groq
```

---

## ⚙️ Configuration

Set your `GROQ_API_KEY` environment variable:

### Linux / macOS
```bash
export GROQ_API_KEY="your-groq-api-key"
```

### Windows (PowerShell)
```powershell
$env:GROQ_API_KEY="your-groq-api-key"
```

### Claude Desktop Integration (`claude_desktop_config.json`)

```json
{
  "mcpServers": {
    "groq": {
      "command": "python",
      "args": ["-m", "mcp_server_groq"],
      "env": {
        "GROQ_API_KEY": "your-groq-api-key"
      }
    }
  }
}
```

---

## 📜 License
MIT License. Created by **Bhanu Kiran**.