GadgetBond

  • Latest
  • How-to
  • Tech
    • AI
    • Amazon
    • Apple
    • CES
    • Computing
    • Creators
    • Google
    • Meta
    • Microsoft
    • Mobile
    • Samsung
    • Security
    • Xbox
  • Transportation
    • Audi
    • BMW
    • Cadillac
    • E-Bike
    • Ferrari
    • Ford
    • Honda Prelude
    • Lamborghini
    • McLaren W1
    • Mercedes
    • Porsche
    • Rivian
    • Tesla
  • Culture
    • Apple TV
    • Disney
    • Gaming
    • Hulu
    • Marvel
    • HBO Max
    • Netflix
    • Paramount
    • SHOWTIME
    • Star Wars
    • Streaming
Add GadgetBond as a preferred source to see more of our stories on Google.
Font ResizerAa
GadgetBondGadgetBond
  • Latest
  • Tech
  • AI
  • Deals
  • How-to
  • Apps
  • Mobile
  • Gaming
  • Streaming
  • Transportation
Search
  • Latest
  • Deals
  • How-to
  • Tech
    • Amazon
    • Apple
    • CES
    • Computing
    • Creators
    • Google
    • Meta
    • Microsoft
    • Mobile
    • Samsung
    • Security
    • Xbox
  • AI
    • Anthropic
    • ChatGPT
    • ChatGPT Atlas
    • Gemini AI (formerly Bard)
    • Google DeepMind
    • Grok AI
    • Microsoft Copilot
    • OpenAI
    • Perplexity
    • xAI
  • Transportation
    • Audi
    • BMW
    • Cadillac
    • E-Bike
    • Ferrari
    • Ford
    • Honda Prelude
    • Lamborghini
    • McLaren W1
    • Mercedes
    • Porsche
    • Rivian
    • Tesla
  • Culture
    • Apple TV
    • Disney
    • Gaming
    • Hulu
    • Marvel
    • HBO Max
    • Netflix
    • Paramount
    • SHOWTIME
    • Star Wars
    • Streaming
Follow US
AIAppsHow-toSecurityTech

How to enable the ExpressVPN MCP server on your AI tools

The ExpressVPN MCP server is in beta — and it's already one of the most useful developer features the VPN has ever shipped.

By
Shubham Sawarkar
Shubham Sawarkar's avatar
ByShubham Sawarkar
Editor-in-Chief
I’m a tech enthusiast who loves exploring gadgets, trends, and innovations. With certifications in CISCO Routing & Switching and Windows Server Administration, I bring a sharp...
Follow:
- Editor-in-Chief
Mar 10, 2026, 6:11 AM EDT
Share
We may get a commission from retail offers. Learn more
Person typing on a MacBook at a wooden desk with the ExpressVPN app open on screen beside a dark code editor window, illustrating AI-assisted VPN control in a real-world workspace.
Image: ExpressVPN
SHARE

ExpressVPN just made something pretty cool — you can now hook your VPN directly into AI developer tools like Claude Code, Codex, Cursor, VS Code, and more, all thanks to the Model Context Protocol (MCP). No more alt-tabbing to the VPN app. Your AI assistant handles it.

Here’s everything you need to know to get it running.


What is the ExpressVPN MCP server?

The ExpressVPN MCP server (currently in beta) lets your AI coding tools — think Claude Code, Codex, Cursor, VS Code, or LM Studio — read and control your VPN connection using natural language or programmatic commands. We’re talking connecting/disconnecting, switching server regions, changing protocols, running speed tests, and even toggling ad/malware blocking — all without ever opening the VPN app itself.​

It’s built on the Model Context Protocol, an open standard that allows AI assistants to interact with external tools and services. Anthropic introduced MCP in late 2024, and it’s been gaining rapid adoption across the developer ecosystem.

Related /

  • What is the ExpressVPN MCP server
  • ExpressVPN is the first to plug VPN infrastructure into Anthropic’s MCP ecosystem

Before you begin: prerequisites

You’ll need a few things checked off first:​

  • An active ExpressVPN subscription (1-year or 2-year plan on Basic, Advanced, or Pro tier — or ExpressVPN for Teams)
  • The latest ExpressVPN beta desktop app (macOS, Windows, or Linux)
  • An MCP-compatible AI client that supports HTTP-based MCP servers

Step 1: Enable MCP in ExpressVPN

  1. Open the ExpressVPN desktop app
  2. Go to Profile → Settings
  3. Toggle on “Enable MCP Server”
Screenshot of the ExpressVPN desktop app showing an active VPN connection to USA–Chicago with an “MCP Server Enabled” banner, connection timer, map view, and settings panel highlighting the toggled “Enable MCP Server” option with a local URL.
Image: ExpressVPN

That’s it. The local MCP server starts automatically in the background. It runs on 127.0.0.1:20090 by default — but check the app, as your machine may use a different port.​


Step 2: Connect your AI tool

Pick your tool below and follow the one-time setup:

Claude Code

Run this in your terminal:

claude mcp add --transport http expressvpn http://127.0.0.1:20090/mcp

Codex

Add the following to your Codex MCP configuration file:

{
  "mcpServers": {
    "expressvpn": {
      "url": "http://127.0.0.1:20090/mcp"
    }
  }
}

Cursor

Go to Settings → Tools & MCP → + Add custom MCP, then paste:

{
  "mcpServers": {
    "expressvpn": {
      "url": "http://127.0.0.1:20090/mcp",
      "headers": {}
    }
  }
}

VS Code

Open the Command Palette (Shift+Cmd+P), run MCP: Add Server, and use:

{
"servers": {
"expressvpn": {
"type": "http",
"url": "http://127.0.0.1:20090/mcp"
}
}
}

LM Studio

Go to the right sidebar → Integrations tab → Install → Edit mcp.json and add the same config as Cursor above.

Any other tool

If your tool isn’t listed, just manually add http://127.0.0.1:20090/mcp it as an HTTP-based MCP server.


What can your AI actually do with it?

Once connected, your AI assistant can:​

  • Connect/disconnect the VPN
  • Switch regions (e.g., “connect to Germany before running integration tests”)
  • Check your real and VPN IP addresses
  • Change VPN protocols (Lightway, OpenVPN, WireGuard)
  • Enable Network Lock (kill switch)
  • Set Split Tunnel rules per app
  • Toggle Threat Manager — ad blocking, tracker blocking, malicious site blocking
  • Run speed tests and diagnostics

It’s genuinely useful for developers doing geo-based testing or QA work across regions.


Is it safe?

Yes, and ExpressVPN is pretty upfront about the design:​

  • The server is local only — it never talks to the internet, only your own machine
  • Your account credentials are never passed through the MCP interface
  • It’s opt-in — disabled by default
  • You can turn it off instantly by toggling MCP off in Settings

Quick troubleshooting

  • Can’t connect? Make sure the ExpressVPN app is open and the toggle is on. Run curl http://127.0.0.1:20090/mcp in your terminal to verify the server is live.​
  • Wrong port? The app shows the actual port when you enable MCP — use that instead of 20090 if it differs.
  • AI using curl instead of MCP tools? Restart the AI client and re-run the MCP add command.​
  • Firewall blocking it? On Windows, add an inbound rule for TCP port 20090. On macOS, check Privacy & Security → Local Network and grant permission to your terminal app.​

The ExpressVPN MCP server is a neat step toward VPN management becoming a native part of AI-assisted developer workflows. If you’re already living inside tools like Cursor or Claude Code, it’s worth the five-minute setup.


Discover more from GadgetBond

Subscribe to get the latest posts sent to your email.

Topic:ExpressVPN
Leave a Comment

Leave a ReplyCancel reply

Most Popular

Claude Code adds multiplayer editing and public artifact sharing

Microsoft Entra ID trashes text-code logins for good

Windows Search Box update prioritizes speed and simplicity

The day the internet realized a list of links wasn’t enough

LG’s new commercial washers can clean and dry in just one hour

Also Read
Promotional graphic for the MLS Season Pass on Apple TV featuring the slogan "IT'S GOOD TO BE BACK" in large white text on an orange background. The MLS and Apple TV logos appear in the top-left corner, while several soccer players in action—including one in a pink Inter Miami CF jersey, a goalkeeper in green, and players in black and blue kits—are shown on the right competing for the ball, highlighting the return of the MLS season.

MLS resumes on Apple TV after World Cup break

Illustration showing the Gmail logo above the text “Gmail in the Gemini era,” with the word “Gemini” highlighted in blue on a light gradient background.

Gmail rolls out custom prompting to help you perfect your tone

EA Sports Madden NFL 27 Arcade Edition key art featuring a quarterback in a Chicago Bears uniform preparing to throw a football, with the game logo displayed over a nighttime Chicago skyline.

EA’s new Madden NFL 27 Arcade Edition launches August 6

Samsung Bespoke AI washer and dryer lineup for 2026 installed beneath a modern staircase, featuring matching graphite-finish front-load appliances with AI displays, integrated shelving, and built-in ambient lighting in a contemporary home laundry space.

A look at Samsung’s sleek new Bespoke AI laundry lineup

Waze app displaying the new motorcycle mode with a Gemini AI-powered route recommendation, highlighting the fastest 19-minute route, alternate routes, and motorcycle-specific navigation options.

Waze finally adds a dedicated motorcycle mode

Perplexity Mac app displaying the new multiple account switcher, allowing users to quickly switch between accounts, add a new account, manage credits, and access settings from a single dropdown menu.

Perplexity adds multi-account support to the Mac app

Claude Code desktop app displaying its new in-app browser, with the AI assistant researching a checkout shipping flow while viewing a live website and analyzing best practices side by side.

Claude Code gets an in-app browser

Perplexity AI interface showing Computer mode with the AI model selector open, highlighting Grok 4.5 as the selected model alongside GPT-5.6 Sol, Claude Fable 5, Claude Opus 4.8, Claude Sonnet 5, and a GLM 5.2-based preview option.

Grok 4.5 lands in Perplexity Computer for Pro, Max, and Enterprise users

Company Info
  • Homepage
  • Support my work
  • Latest stories
  • Company updates
  • GDB Recommends
  • Daily newsletters
  • About us
  • Contact us
  • Write for us
  • Editorial guidelines
Legal
  • Privacy Policy
  • Cookies Policy
  • Terms & Conditions
  • DMCA
  • Disclaimer
  • Accessibility Policy
  • Security Policy
  • Do Not Sell or Share My Personal Information
Socials
Follow US

Disclosure: We love the products we feature and hope you’ll love them too. If you purchase through a link on our site, we may receive compensation at no additional cost to you. Read our ethics statement. Please note that pricing and availability are subject to change.

Copyright © 2026 GadgetBond. All Rights Reserved. Use of this site constitutes acceptance of our Terms of Use and Privacy Policy | Do Not Sell/Share My Personal Information.