MCP Server: Comparing Local and Cloud LLMs with Debate Feature

The MCP server is designed to facilitate the comparison of local and cloud-based language models by allowing queries to multiple providers simultaneously. Created by a user known as nesquikm, this tool supports integration with local models through Ollama, as well as cloud APIs including OpenAI, Gemini, Groq, and Together AI.
Key Details
- Providers Supported: Can be pointed at Ollama, LM Studio, or any OpenAI-compatible endpoint.
- Mix and Match Models: Combine local models and various cloud providers in a single query.
- Comparison Features: Answers are displayed side by side, with options for models to vote on the best approach or engage in structured debates, where a third model judges the responses.
- Usage: Quick start with the command
npx mcp-rubber-duck. Compatible with multiple IDEs and platforms like Claude Desktop, Cursor, VS Code, or any MCP client, and also deployable via Docker. - Setup: The repository is available on GitHub at mcp-rubber-duck and is written in TypeScript under the MIT license. Note that this tool is still in early stages and feedback is appreciated, especially from those using local models as providers.
This tool can be particularly useful for developers interested in understanding how different models approach certain problems, especially when discrepancies arise.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Peers MCP Server Connects AI Coding Sessions for Collaboration
Peers is a local MCP server that connects Claude Code and Codex sessions, allowing them to discover each other, collaborate through shared scratchpads, share artifacts like diffs and test reports, and hand off session context as structured markdown.

mnemos: A Persistent Memory Layer for AI Coding Agents (Go, MCP-Native, No Python)
mnemos is a Go-based MCP-native memory layer for AI coding agents. The author built a verifier to measure lift: +40% aggregate on read-side scenarios, but only 53% write-side capture rate after iterative fixes.

Tycono: Open-Source AI Agent Harness with Org Chart and Autonomous Improvement Loops
Tycono is an open-source harness where you define AI agent roles in YAML (CTO, engineer, QA, etc.) and they work together following an org chart with autonomous improvement loops. The system ran 17 rounds overnight on a pixel running game task, generating 6,796 lines of code across 43 commits.

Open-source trust scoring hook for Claude Code monitors sessions, blocks protected paths
A developer built a Python hook that scores every Claude Code session on reliability, scope, and cost dimensions, blocks access to protected paths like .env files, and hash-chains events for tamper detection. The single-file tool is available on GitHub.