Local Groq Desktop chat app with MCP support
Local Groq Desktop chat app with MCP support
Groq Desktop features MCP server support for all function calling capable models hosted on Groq. Now available for Windows, macOS, and Linux!
Note for macOS Users: After installing on macOS, you may need to run this command to open the app:
xattr -c /Applications/Groq\ Desktop.app
You can install the latest release using Homebrew via an unofficial tap:
brew tap ricklamers/groq-desktop-unofficial
brew install --cask groq-desktop
# Allow the app to run
xattr -c /Applications/Groq\ Desktop.app
pnpm install
pnpm dev
If you encounter an error like "Electron failed to install correctly" when running pnpm dev, this is likely because pnpm blocked the build scripts for security reasons. To fix this:
Remove the corrupted installation:
rm -rf node_modules
Reinstall dependencies:
pnpm install
Approve the build scripts when prompted (or run manually):
pnpm approve-builds
Select electron and esbuild when prompted to allow their post-install scripts to run.
Try running the dev server again:
pnpm dev
To build the application for production:
pnpm dist
This will create installable packages in the release directory for your current platform.
# Build for all supported platforms
pnpm dist
# Build for macOS only
pnpm dist:mac
# Build for Windows only
pnpm dist:win
# Build for Linux only
pnpm dist:linux
This app now supports Windows, macOS, and Linux. Here's how to test cross-platform functionality:
We've added several test scripts to verify platform support:
# Run all platform tests (including Docker test for Linux)
pnpm test:platforms
# Run basic path handling test only
pnpm test:paths
# If on Windows, run the PowerShell test script
.\test-windows.ps1
The testing scripts will check:
In the settings page, add your Groq API key:
{
"GROQ_API_KEY": "your-api-key"
}
You can obtain a Groq API key by signing up at https://console.groq.com.
No open issues yet, or sync has not completed.