{
"mcpServers": {
"phone-a-friend-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 281 days ago. 10 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Phone A Friend Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An AI-to-AI consultation system that enables one AI to "phone a friend" (another AI) for critical thinking, long context reasoning, and complex problem solving via OpenRouter.
Sometimes an AI encounters complex problems that require:
Phone-a-Friend MCP Server creates a two-step consultation process:
This enables AI systems to leverage other AI models as "consultants" for complex reasoning tasks.
Primary AI → Phone-a-Friend MCP → OpenRouter → External AI (O3, Claude, etc.) → Processed Response → Primary AI
Sequential Workflow:
analyze_context - Gather and structure all relevant contextget_critical_thinking - Send context to external AI via OpenRouter for reasoningextract_actionable_insights - Process response into actionable formatIdeal for:
Configure your MCP client (e.g., Claude Desktop) using the JSON block below—no cloning or manual installation required.
The uv runner will automatically download and execute the server package if it isn't present.
Add the following JSON configuration to your MCP client and replace <YOUR_API_KEY> with your key:
{
"mcpServers": {
"phone-a-friend": {
"command": "uvx",
"args": [
"phone-a-friend-mcp-server",
"--provider", "openai",
"--api-key", "<YOUR_API_KEY>"
]
}
}
}
That's it! You can now use the
phone_a_friendtool in any compatible client. For more options, see the Advanced Configuration section.
📞 Consult external AI for critical thinking and complex reasoning. Makes API calls to get responses.
📠 Generate master prompt file for manual AI consultation. Creates file for copy-paste workflow.
Parameters
phone_a_friend
all_related_context (required): General, non-code context such as constraints, tracebacks, or high-level requirements.file_list (required): Array of file paths or glob patterns. Just pass the paths – the server automatically reads those files (skips anything in .gitignore or non-text/binary) and builds the full code context for the external AI.task (required): A clear, specific description of what you want the external AI to do.fax_a_friend
all_related_context (required): Same as above.file_list (required): Same as above.task (required): Same as above.output_directory (required): Directory where the generated fax_a_friend.md master prompt file will be saved.This section covers all configuration options, including environment variables, CLI flags, and model selection.
The server can be configured via CLI flags or environment variables.
| Provider | CLI Flag | Environment Variable |
| :--- | :--- | :--- |
| OpenAI | --provider openai | OPENAI_API_KEY |
| OpenRouter | --provider openrouter | OPENROUTER_API_KEY |
| Anthropic | --provider anthropic | ANTHROPIC_API_KEY |
| Google | --provider google | GOOGLE_API_KEY |
CLI Example:
phone-a-friend-mcp-server --provider openai --api-key "sk-..."
Environment Variable Example:
export OPENAI_API_KEY="sk-..."
... [View full README on GitHub](https://github.com/abhishekbhakat/phone-a-friend-mcp-server#readme)