Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP server that interacts with the Phone Link Windows app via UI Automation to read messages, calls, notifications, and photos, and perform actions like sending SMS and making calls.

README.md

phonelink-mcp-server

MCP server that reads and interacts with the Phone Link (MyPhone) Windows app via UI Automation. Since Microsoft doesn't offer public APIs for Phone Link, this server scrapes the UI using PowerShell + .NET's System.Windows.Automation.

Features

| Tool | Type | Description | |------|------|-------------| | phonelink_get_status | Read | Connection status + phone info | | phonelink_get_messages | Read | List conversations or read a specific chat | | phonelink_get_calls | Read | Call history (incoming/outgoing/missed) | | phonelink_get_notifications | Read | Phone notifications | | phonelink_get_photos | Read | Photo gallery metadata | | phonelink_inspect_ui | Read | Debug: dump full UI automation tree | | phonelink_send_message | Write | Send an SMS via the Phone Link UI | | phonelink_make_call | Write | Initiate a phone call | | phonelink_launch_app | Write | Launch Phone Link if not running |

Requirements

  • Windows 10/11 with Phone Link installed and configured
  • Node.js >= 18
  • PowerShell (Windows PowerShell 5.1+ or PowerShell Core 7+)
  • Phone connected and paired in Phone Link

Setup

cd phonelink-mcp-server
npm install
npm run build

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "phonelink": {
      "command": "node",
      "args": ["C:/path/to/phonelink-mcp-server/dist/index.js"],
      "env": {
        "PHONELINK_PS_EXECUTABLE": "powershell.exe"
      }
    }
  }
}

Note: Use pwsh.exe instead of powershell.exe if you have PowerShell Core installed (recommended for better performance).

How It Works

Claude ←→ MCP (stdio) ←→ Node.js Server ←→ PowerShell Scripts ←→ UIAutomation ←→ Phone Link UI
  1. Claude calls an MCP tool (e.g., phonelink_get_messages)
  2. The Node.js server executes the corresponding PowerShell script
  3. The PowerShell script uses .NET's System.Windows.Automation to:
  • Find the Phone Link window
  • Navigate to the correct tab
  • Traverse the UI element tree
  • Extract text, names, and metadata
  1. Results are returned as JSON through the MCP protocol

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | PHONELINK_PS_EXECUTABLE | powershell.exe | PowerShell executable path |

Troubleshooting

"Phone Link window not found"

  • Make sure Phone Link is running (use phonelink_launch_app first)
  • Check that Phone Link's window title matches expected names. Use phonelink_inspect_ui to debug.
  • The server searches for: "Phone Link", "Collegamento al telefono", "Il tuo telefono", "Your Phone"

UI elements not found

  • Phone Link updates may change the UI structure. Use phonelink_inspect_ui to see current elements.
  • Try increasing max_depth in inspect_ui to find deeper elements.
  • The PowerShell scripts include multi-language support (EN, IT, DE, ES) but your locale might use different strings.

Slow responses

  • UI Automation traversal can be slow, especially with high max_depth.
  • Keep max_depth at 10-12 for most operations.
  • The first call after launching Phone Link may be slower while the UI loads.

Permission issues

  • PowerShell must run with sufficient privileges to use UIAutomation.
  • If running as a service, ensure the service account has access to the desktop session.

Limitations

  • UI-dependent: Changes to Phone Link's UI can break scraping. Use inspect_ui to adapt.
  • Single language per session: Element names depend on the Windows display language.
  • No photo download: The photos tool lists metadata but cannot export actual image files.
  • Sequential only: Only one tool should run at a time (concurrent UI automation will conflict).
  • Foreground required: Phone Link window must be visible (not minimized) for some operations.

Development

npm run dev          # Watch mode
npm run build        # Build once
npm start            # Run server

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Communication servers.