critique-mcp
Verified Safeby mrorigo
Overview
Implements an Iterative Verification-First (Iter-VF) reasoning workflow as an MCP server to enhance LLM consistency by offloading sampling to a host.
Installation
ts-node src/index.tsSecurity Notes
The server implements strict Zod validation for all inputs and outputs, mitigating common injection risks. It delegates LLM interaction to an MCP host, meaning it does not handle API keys or direct model access, shifting that responsibility to the host. While `cross-spawn` (via `execa` in `vitest` dependencies) is used for test execution, it is not present in the main server runtime. Communication is via STDIO, reducing typical network exposure, but relies on a trusted execution environment. No 'eval' or obvious hardcoded secrets are present in the provided server code.
Similar Servers
boilerplate-mcp-server
Provides a production-ready foundation for developing custom Model Context Protocol (MCP) servers in TypeScript to connect AI assistants with external APIs and data sources, exemplified by an IP geolocation tool.
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.
mcp-agent-kit
Simplifies the creation and management of AI agents, chatbots, and Model Context Protocol (MCP) servers with various LLM providers.
mcp-typescript-simple
Production-ready MCP (Model Context Protocol) server with dual-mode operation (STDIO & HTTP), multi-LLM integration, and OAuth authentication, designed for horizontal scalability and comprehensive observability.