mullvad-mcp
MCP server for controlling Mullvad VPN through Claude Desktop, Cursor, Windsurf, and any MCP-compatible client. Connect, disconnect, switch locations, check for leaks, manage settings — all via natural language.
README
mullvad-mcp
An MCP (Model Context Protocol) server for controlling Mullvad VPN through any MCP-compatible client — Claude Desktop, Cursor, Windsurf, and more.
All VPN interaction goes through the mullvad CLI. No direct API calls, no config file parsing, no credentials needed.
Prerequisites
- Mullvad VPN app installed with the CLI available in your PATH
- Verify:
mullvad --version - Download Mullvad
- Verify:
- Python 3.11+
- uv package manager — install uv
Installation
git clone https://github.com/oregansamuel3/mullvad-mcp.git
cd mullvad-mcp
uv sync
Client Configuration
Claude Desktop
Add to ~/.config/claude-desktop/claude_desktop_config.json (Linux) or ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"mullvad": {
"command": "uv",
"args": ["--directory", "/path/to/mullvad-mcp", "run", "mullvad-mcp"]
}
}
}
Cursor
Add to .cursor/mcp.json in your project or ~/.cursor/mcp.json globally:
{
"mcpServers": {
"mullvad": {
"command": "uv",
"args": ["--directory", "/path/to/mullvad-mcp", "run", "mullvad-mcp"]
}
}
}
Generic MCP Client (stdio)
{
"mcpServers": {
"mullvad": {
"command": "uv",
"args": ["--directory", "/path/to/mullvad-mcp", "run", "mullvad-mcp"],
"transport": "stdio"
}
}
}
Available Tools
Connection Control
| Tool | Description |
|---|---|
connect |
Connect to VPN, optionally specifying country/city/hostname |
disconnect |
Disconnect from VPN |
reconnect |
Reconnect, optionally to a new location |
Status & Diagnostics
| Tool | Description |
|---|---|
get_status |
Current connection state, server, protocol, IPs |
check_leak |
Query am.i.mullvad.net to verify VPN protection |
Server Selection
| Tool | Description |
|---|---|
list_countries |
All available countries with server counts |
list_cities |
Cities for a given country |
list_servers |
Servers with filters (country, city, owned_only) |
set_location |
Set preferred location by country, city, or hostname |
Account Management
| Tool | Description |
|---|---|
get_account_info |
Masked account number, expiry date |
get_device_info |
Devices registered to the account |
Settings
| Tool | Description |
|---|---|
get_settings |
All current settings as a structured object |
set_killswitch |
Enable/disable lockdown mode |
set_daita |
Enable/disable DAITA (traffic analysis defence) |
set_multihop |
Enable/disable multihop with optional entry location |
set_dns |
Set DNS: default (with blocking options) or custom IPs |
set_protocol |
Configure WireGuard options (quantum resistance, IPv6) |
set_obfuscation |
Set anti-censorship mode (auto/off/udp2tcp/shadowsocks/etc) |
Example Interactions
Connection
"Connect me to Sweden"
→ Calls
connect(country="se")— sets relay to Sweden and connects.
Status Check
"Am I leaking?"
→ Calls
check_leak()— queries am.i.mullvad.net and reports whether traffic exits through Mullvad.
Server Selection
"What cities are available in Germany?"
→ Calls
list_cities(country="de")— returns Berlin, Frankfurt, etc. with server counts.
Settings
"Enable the kill switch and block ads"
→ Calls
set_killswitch(enabled=True)thenset_dns(block_ads=True).
Environment Variables
| Variable | Default | Description |
|---|---|---|
MULLVAD_CLI_PATH |
Auto-detected | Override path to the mullvad binary |
MULLVAD_CLI_TIMEOUT |
10 |
CLI command timeout in seconds |
How It Works
All tools call the mullvad CLI via subprocess. The CLI handles authentication natively — no API keys or secrets are needed. Output is parsed into structured dicts so LLMs can reason about the results.
Resources
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.