productivity
Groq MCP, CLI, and Lua Integration for AI Agents
Groq integration docs for AI agents: MCP gateway setup, Groq CLI commands, Lua API reference, credentials, and function schemas.Groq for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
groq.groq_list_models | Read read | 0 | List available Groq AI models. Returns model IDs, ownership, and other metadata for models accessible via the Groq API. |
groq.groq_get_model | Read read | 0 | Retrieve a Groq model by ID. |
groq.groq_create_completion | Write write | 6 | Create a chat completion using a Groq model. Send a list of messages and receive an AI-generated response with ultra-low latency. Supports configurable parameters like temperature, max_tokens, and top_p. |
groq.groq_create_response | Write write | 0 | Create a response through Groq beta Responses API. |
groq.groq_create_transcription | Write write | 0 | Transcribe audio with Groq. |
groq.groq_create_translation | Write write | 0 | Translate audio into English with Groq. |
groq.groq_create_speech | Write write | 0 | Generate speech audio from text. |
groq.groq_create_batch | Write write | 0 | Create a batch job from an uploaded JSONL file. |
groq.groq_get_batch | Read read | 0 | Retrieve a batch job by ID. |
groq.groq_list_batches | Read read | 0 | List Groq batch jobs. |
groq.groq_cancel_batch | Write write | 0 | Cancel a Groq batch job. |
groq.groq_upload_file | Write write | 0 | Upload a file for batch processing. |
groq.groq_list_files | Read read | 3 | List files uploaded to the Groq Files API. Returns file IDs, filenames, purposes, sizes, and upload timestamps. |
groq.groq_get_file | Read read | 1 | Get metadata for an uploaded file in Groq, including its ID, filename, purpose, size in bytes, and processing status. |
groq.groq_download_file | Read read | 0 | Download Groq file content. |
groq.groq_delete_file | Write write | 0 | Delete an uploaded Groq file. |
groq.groq_list_fine_tunings | Read read | 0 | List Groq fine-tuning jobs. |
groq.groq_create_fine_tuning | Write write | 0 | Create a Groq fine-tuning job. |
groq.groq_get_fine_tuning | Read read | 0 | Retrieve a Groq fine-tuning job. |
groq.groq_delete_fine_tuning | Write write | 0 | Delete a Groq fine-tuning job. |