Phone A Friend MCP Server

An AI-to-AI consultation system that enables one AI to "phone a friend" (another AI) for critical thinking, long context reasoning, and complex

Local serverstdio

What is the Phone A Friend MCP server?

Phone a friend mcp server lets Claude, Cursor and other MCP clients work with Phone A Friend directly. 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.

What Phone A Friend does

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.

Tools it exposes

Once connected, the assistant can call these 7 tools directly:

  • Provider — CLI Flag
  • OpenAI — --provider openai
  • OpenRouter — --provider openrouter
  • Anthropic — --provider anthropic
  • Google — --provider google
  • phone_a_friend — 📞 Consult external AI for critical thinking and complex reasoning. Makes API calls to get responses
  • fax_a_friend — 📠 Generate master prompt file for manual AI consultation. Creates file for copy-paste workflow

Installing the phone a friend mcp server

Setup follows the standard MCP pattern: clone or install the server, then register it in your client's configuration file and restart the client. The configuration snippets on this page cover Claude Desktop, Claude Code and Cursor.

Configuration

Before the server will start you need to supply 7 environment variables: OPENAI_API_KEY, PHONE_A_FRIEND_MODEL, YOUR_API_KEY, OPENROUTER_API_KEY, ANTHROPIC_API_KEY, GOOGLE_API_KEY, PHONE_A_FRIEND_BASE_URL. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

AI-service servers chain other models into your assistant, turning a single chat into a small production pipeline. Phone A Friend sits in that group, and the shape of its toolset — Provider, OpenAI, OpenRouter among others — tells you what it is really for. Worth comparing against the other ai services servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • With 7 tools exposed, expect a noticeable bump in prompt size — disable it in projects that never use Phone A Friend.
  • Maintained by abhishekbhakat.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the phone a friend mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
ProviderCLI Flag
OpenAI--provider openai
OpenRouter--provider openrouter
Anthropic--provider anthropic
Google--provider google
phone_a_friend📞 Consult external AI for critical thinking and complex reasoning. Makes API calls to get responses.
fax_a_friend📠 Generate master prompt file for manual AI consultation. Creates file for copy-paste workflow.

How to install the Phone A Friend MCP server

{
  "mcpServers": {
    "phone-a-friend": {
      "command": "uvx",
      "args": [
        "phone-a-friend-mcp-server",
        "--provider", "openai",
        "--api-key", "<YOUR_API_KEY>"
      ]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
OPENAI_API_KEYCredential the server authenticates with.Yes
PHONE_A_FRIEND_MODELConfiguration value read at startup.Optional
YOUR_API_KEYCredential the server authenticates with.Yes
OPENROUTER_API_KEYCredential the server authenticates with.Yes
ANTHROPIC_API_KEYCredential the server authenticates with.Yes
GOOGLE_API_KEYCredential the server authenticates with.Yes
PHONE_A_FRIEND_BASE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Phone A Friend to Provider.
  • Use Phone A Friend to OpenAI.
  • Use Phone A Friend to OpenRouter.

Frequently asked questions

It connects Phone A Friend to MCP-compatible AI assistants such as Claude and Cursor, exposing 7 tools (Provider, OpenAI, OpenRouter, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Phone A Friend directly.