Second Opinion MCP Server
An AI-powered coding assistant that combines insights from Gemini, Stack Overflow, and Perplexity AI to help solve programming problems.
Documentation
π§ Second Opinion MCP Server
Stuck on a problem? Get a second opinion from a different model.
An MCP server that combines Gemini, Perplexity, and Stack Overflow to give Claude (or any MCP client) a multi-source second take on tough coding problems.
Why
When Claude gets stuck β or just confidently wrong β the fastest unblocker is a different model with different training. This server makes that one tool call away:
- π¦ Google Gemini for an alternative model perspective
- πͺ Perplexity for fresh web-grounded analysis
- π§ Stack Overflow for accepted answers from real engineers
You stay in your Claude conversation. The second opinion comes to you.
Features
- π Multi-source synthesis β combines insights from three different sources into one answer
- π€ Automatic language detection from file extensions
- π Code snippet extraction and clean formatting
- π Markdown report generation for solutions
- π§ Git-aware context gathering β includes nearby files when relevant
- β‘ Single tool call β no need to context-switch between chat apps
Install
git clone https://github.com/joewilsonai/second-opinion-mcp-server
cd second-opinion-mcp-server
npm install
npm run build
Configure in Claude Desktop
Edit your claude_desktop_config.json:
{
"mcpServers": {
"second-opinion": {
"command": "node",
"args": ["/absolute/path/to/second-opinion-mcp-server/build/index.js"],
"env": {
"GEMINI_API_KEY": "your-gemini-api-key",
"PERPLEXITY_API_KEY": "your-perplexity-api-key",
"STACK_EXCHANGE_KEY": "your-stack-exchange-key"
}
}
}
}
Restart Claude Desktop.
Required environment variables
| Variable | Source | Notes |
|---|---|---|
GEMINI_API_KEY | aistudio.google.com | Required |
PERPLEXITY_API_KEY | perplexity.ai/settings/api | Required |
STACK_EXCHANGE_KEY | stackapps.com/apps/oauth/register | Optional β falls back to anonymous |
Usage
Once installed, just ask Claude:
"Get a second opinion on this race condition I'm hitting in our worker pool."
Claude will call the tool, pass your code + context, and synthesize a response from all three sources.
Stack
- TypeScript + Node.js 18+
- @modelcontextprotocol/sdk
- @google/generative-ai (Gemini)
- Perplexity API
- Stack Exchange API
Related MCP servers
- π mcp-perplexity-server (β 14) β Perplexity-only, lighter weight
- π github-meta-mcp-server β Natural-language GitHub repo management
License
MIT