compound-mcp-server
Verified Safeby groq
Overview
Provides a Model Context Protocol (MCP) server for interacting with Groq models, including compound/meta models, exposing tools for real-time information and code execution capabilities from the Groq AI.
Installation
npx -y groq-compound-mcp-serverEnvironment Variables
- GROQ_API_KEY
- REDIS_URL
Security Notes
The server correctly handles sensitive information (Groq API key, Redis URL) via environment variables. Input validation is performed using Zod schemas for tool arguments, mitigating common injection risks. There is no direct `eval` or arbitrary code execution exposed by the server itself; the 'code execution' capability is a feature of the underlying Groq AI models this server interfaces with. The use of `@vercel/mcp-adapter` and `express-rate-limit` (via `@modelcontextprotocol/sdk` dependency) suggests good practices for web endpoint security and abuse prevention.
Similar Servers
claude-prompts-mcp
Enhances AI assistant behavior through structured prompt management, multi-step chains, quality gates, and autonomous verification loops, primarily for development tasks.
emceepee
A proxy server enabling AI agents to dynamically connect to and interact with multiple Model Context Protocol (MCP) backend servers, exposing the full MCP protocol via a simplified tool interface or a sandboxed JavaScript execution environment.
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.
polybrain-mcp
Connects AI agents to multiple LLM models, providing conversation history management and model switching capabilities.