Proxychains MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Proxychains MCP Serverrun curl ifconfig.me through the proxy chain"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Proxychains MCP Server
MCP server for proxychains-ng (proxychains4) - route commands through proxy chains via SSH to a remote Linux host (e.g., Kali Linux).
Overview
This MCP server provides tools to manage and use proxychains configurations dynamically. It executes commands through SSH on a remote host where proxychains4 is installed, allowing AI assistants to route network traffic through proxy chains for privacy, security testing, or accessing geo-restricted resources.
Features
Tool | Description |
| Execute commands through the configured proxy chain |
| Get, set, or reset the full configuration |
| Add a proxy to the chain (SOCKS4, SOCKS5, HTTP, RAW) |
| Remove a proxy by index or host:port |
| Set chain mode (strict, dynamic, random, round_robin) |
| Configure DNS handling mode |
| Test proxy chain connectivity and latency |
| List all configured proxies |
| Import proxies from file or URL |
| Export configuration in various formats |
Installation
Prerequisites
Node.js 18+
SSH access to a Linux host with proxychains4 installed
The SSH host should be configured in
~/.ssh/configor accessible by hostname
Setup
# Clone the repository
git clone https://github.com/schwarztim/sec-proxychains-mcp.git
cd sec-proxychains-mcp
# Install dependencies
npm install
# Build
npm run buildMCP Configuration
Add to your Claude Desktop or MCP client configuration:
{
"mcpServers": {
"proxychains": {
"command": "node",
"args": ["/path/to/sec-proxychains-mcp/dist/index.js"],
"env": {
"PROXYCHAINS_KALI_HOST": "kali",
"PROXYCHAINS_SSH_TIMEOUT": "30000"
}
}
}
}Configuration
Environment Variables
Variable | Default | Description |
|
| SSH hostname for the remote host |
|
| SSH command timeout in milliseconds |
|
| Local config storage directory |
Chain Modes
Mode | Description |
| All proxies must work, used in order specified |
| Skip dead proxies, at least one must work |
| Random proxy selection for each connection |
| Rotate through proxies sequentially |
Proxy Types
Type | Description |
| SOCKS5 proxy (recommended) |
| SOCKS4 proxy |
| HTTP CONNECT proxy |
| Raw TCP forwarding |
DNS Modes
Mode | Description |
| Route DNS through proxy (recommended, prevents leaks) |
| Legacy mode using proxyresolv |
| Daemon-based DNS resolution |
| No DNS proxying (may leak DNS queries) |
Usage Examples
Basic Setup
// Add a SOCKS5 proxy (e.g., Tor)
proxychains_add({ type: "socks5", host: "127.0.0.1", port: 9050 })
// Add an authenticated HTTP proxy
proxychains_add({
type: "http",
host: "proxy.example.com",
port: 8080,
user: "admin",
pass: "secret"
})
// Set dynamic chain mode (skip dead proxies)
proxychains_mode({ mode: "dynamic_chain" })Testing the Chain
// Test connectivity
proxychains_test({ verbose: true })
// Test against specific target
proxychains_test({ target: "https://api.ipify.org" })Running Commands
// Check your proxied IP
proxychains_run({ command: "curl https://httpbin.org/ip" })
// Run nmap through proxies
proxychains_run({ command: "nmap -sT -Pn target.com" })
// Custom timeout for long operations
proxychains_run({ command: "wget https://example.com/large-file", timeout: 120000 })Importing Proxies
// Import from URL
proxychains_import({
source: "https://raw.githubusercontent.com/example/proxies/main/list.txt",
defaultType: "socks5"
})
// Import from file on remote host
proxychains_import({ source: "/tmp/proxies.txt" })Exporting Configuration
// Export as proxychains.conf format
proxychains_export({ format: "proxychains" })
// Export as JSON
proxychains_export({ format: "json" })
// Export as simple ip:port list
proxychains_export({ format: "ip:port" })Remote Host Setup
The remote host (e.g., Kali Linux) needs proxychains4 installed:
# Debian/Ubuntu/Kali
sudo apt update
sudo apt install proxychains4 curl
# Verify installation
proxychains4 --versionEnsure SSH access works without password prompts:
# Test SSH connection
ssh kali "echo 'Connection successful'"Security Considerations
SSH Keys: Use SSH key authentication instead of passwords
DNS Leaks: Use
proxy_dnsmode to prevent DNS leakageProxy Trust: Only use trusted proxies; traffic is visible to proxy operators
Authentication: Proxy credentials are stored locally in
~/.proxychains-mcp/config.json
Architecture
┌─────────────────┐ SSH ┌─────────────────┐ Proxies ┌─────────────┐
│ MCP Client │─────────────▶│ Remote Host │────────────────▶│ Target │
│ (Claude, etc) │ │ (Kali Linux) │ │ │
└─────────────────┘ │ proxychains4 │ └─────────────┘
└─────────────────┘Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Fork the repository
Create your feature branch (
git checkout -b feature/amazing-feature)Commit your changes (
git commit -m 'Add some amazing feature')Push to the branch (
git push origin feature/amazing-feature)Open a Pull Request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgments
proxychains-ng - The proxychains implementation
Model Context Protocol - The MCP specification
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/schwarztim/sec-proxychains-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server