compound-mcp-server
Verified Safeby groq
Overview
Provides a Model Context Protocol (MCP) server for interacting with Groq models, including compound/meta models, exposing real-time information and code execution capabilities.
Installation
npx groq-compound-mcp-serverEnvironment Variables
- GROQ_API_KEY
- REDIS_URL
Security Notes
The server uses environment variables (GROQ_API_KEY, REDIS_URL) for sensitive information, which is good practice. While one tool is described as 'ask_with_code_execution', the implementation in `executeGroqQuery` simply passes the question to the Groq API. This means code execution (Python REPL interaction) is handled by the remote Groq model, not locally on the server itself via `eval` or `child_process` functions. This significantly mitigates local code execution vulnerabilities. Standard network requests are made to Groq API and optionally Redis.
Similar Servers
tmcp
Build Model Context Protocol (MCP) servers for AI agents, providing schema-agnostic tools, resources, and prompts, with optional OAuth 2.1 authentication and distributed session management.
claude-prompts-mcp
Manages hot-reloadable prompt templates, structured reasoning, and multi-step chain workflows to enhance AI assistant interactions through a Model Context Protocol (MCP) compatible server.
groq-mcp-server
Provides a Model Context Protocol (MCP) server to access Groq's AI capabilities, including ultra-fast LLM chat, vision, text-to-speech, speech-to-text, agentic tooling, and batch processing, from clients like Claude Desktop and Cursor.
MCP-para-todo
An educational MCP server that connects language models with external tools in real-time, focusing on providing real-world context and extending LLM capabilities.