G

Groq

Call Groq LPU-hosted chat models.

·No reviews yet
Repo
Share:

About

Auto-generated

Groq is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Groq.

What is the Groq MCP for?
The Groq MCP allows clients to access chat models hosted on Groq's Language Processing Units (LPUs). It provides an interface to integrate Groq's AI capabilities into various applications.
How can I install the Groq MCP in a client like Cursor?
Installation in a client like Cursor typically involves configuring the MCP server address and transport. For Groq, the transport is 'stdio', and you would usually provide the path to the Groq MCP executable or script.
Does the Groq MCP require an API key?
Yes, the Groq MCP uses API key authentication. You will need to obtain a valid API key from Groq to use this MCP and access their services.
What capabilities does the Groq MCP expose?
The Groq MCP is designed to expose functionalities related to calling LPU-hosted chat models. This includes sending user prompts and receiving model responses for conversational AI applications.
What are the costs associated with using the Groq MCP?
The cost of using the Groq MCP depends on the underlying Groq LPU-hosted chat model services. Pricing is determined by Groq, and it is advisable to consult their official documentation for detailed cost information.
What is a common prerequisite for using the Groq MCP?
A common prerequisite is having an active Groq account and a valid API key. Additionally, the client environment needs to support the 'stdio' transport for communication with the MCP.

Install Groq

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "groq": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-groq"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "groq": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-groq"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "groq": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-groq"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.