MCP-Connect — Kali Agent MCP v2
A Codex-style MCP server providing 126 tools to operate a Kali Linux machine from ChatGPT or any compatible MCP client, including shell execution, filesystem operations, Git, Docker, browser automation, and security tool wrappers.
README
mcp-connect— Kali Agent MCP v2
A Codex-style, structured MCP toolbox for operating a Kali Linux machine from ChatGPT or any compatible MCP client.
This repository contains the complete Kali Agent MCP v2.1.0 server developed in ~/mcp-connect, with 126 MCP tools for shell execution, persistent terminal sessions, filesystem operations, reversible patches, durable jobs, Git/worktrees, project build and test workflows, repository intelligence, Docker, Chromium browser automation, artifacts, checkpoints, system services, sandboxing, auditing, and Kali security-tool wrappers.
Security warning: this project intentionally exposes powerful machine-control capabilities. Run it only on systems you own or are authorized to administer, use a dedicated non-root account, keep the MCP server private, and never commit runtime keys, API tokens, private keys,
.envfiles, tunnel profiles containing secrets, or runtime state.
Project status
- Server version: 2.1.0
- MCP tool discovery: 126 tools
- MCP stdio protocol: validated
- Integration suite: 19 tests passed on the source machine
- Explicit execution timing policy: supported on process-oriented tools
- Persistent tmux sessions: supported
- Durable background jobs and incremental logs: supported
- Git branches/worktrees and reversible patches: supported
- Docker, Chromium/Playwright, bubblewrap sandbox, systemd inspection/actions: supported
- OpenAI Secure MCP Tunnel integration: included
Architecture
ChatGPT / MCP client
|
| OpenAI Secure MCP Tunnel or another private MCP transport
v
tunnel-client
|
| stdio MCP
v
bin/kali-agent-mcp
|
v
Kali Agent MCP v2.1
|
+-- system / health / environment / policy
+-- filesystem / grep / patches / patch rollback
+-- one-shot shell / persistent tmux PTY / interrupts
+-- durable jobs / status / logs / wait / cancel
+-- process / port / service inspection
+-- Git / diff / branches / worktrees / blame
+-- build / test / lint / typecheck / benchmark
+-- repository map / symbols / dependencies / instructions
+-- Docker / Compose
+-- Chromium + Playwright browser sessions
+-- checkpoints / tasks / artifacts / agent workspaces
+-- bubblewrap sandbox
`-- nmap / nikto / gobuster / dirb / sqlmap / Metasploit /
Hydra / John / WPScan / enum4linux wrappers
The preferred tunnel design does not require a public listener. tunnel-client runs on the Kali machine and starts this MCP server as a local stdio child process.
Requirements
Minimum:
- Kali Linux or another compatible Linux distribution
- Python 3.11+
python3-venv- Git
Recommended for all features:
- Chromium
- Node.js + npm
- tmux
- Docker
- bubblewrap (
bwrap) - ripgrep (
rg) - standard Kali security tools used by the wrappers
The Python package dependencies are declared in pyproject.toml:
mcp >=1.22,<2
pydantic >=2.0
psutil >=5.9
GitPython >=3.1
playwright >=1.40 # optional browser extra
pytest >=8 # development/test extra
Fast local setup
git clone https://github.com/asarlashmit/MCP-Connect.git ~/mcp-connect
cd ~/mcp-connect
chmod +x scripts/*.sh bin/* install-kali-chatgpt-mcp.sh rotate-runtime-key.sh
./scripts/setup-local.sh
./scripts/full-validate.sh
The setup script:
- creates
.venv/; - installs the project in editable mode with development and browser extras;
- installs the project-local matching Playwright Node driver when Node/npm are present;
- symlinks
kali-agentandkali-agent-mcpinto~/.local/bin; - leaves all credentials and persistent state outside Git.
Basic checks:
cd ~/mcp-connect
./bin/kali-agent health
./bin/kali-agent capabilities
./bin/kali-agent tools
./scripts/doctor.sh
Local MCP server entry point:
~/mcp-connect/bin/kali-agent-mcp
Connect it to ChatGPT through OpenAI Secure MCP Tunnel
The full end-to-end replication guide is in docs/INSTALLATION.md.
At a high level:
-
Clone and validate this repository.
-
Create an OpenAI MCP tunnel and a separate runtime API key with the required tunnel permissions.
-
Install the official
tunnel-client. -
Initialize a named stdio tunnel profile whose MCP command is:
/home/<your-user>/mcp-connect/bin/kali-agent-mcp -
Keep the runtime key in a mode-
600environment file outside the repository. -
Run
tunnel-client doctor --profile <profile> --explain. -
Run the tunnel persistently, preferably through systemd.
-
In ChatGPT, create a developer-mode app/plugin, choose Connection: Tunnel, and select the tunnel.
-
Verify with
server_healthand a harmless timedexec_commandcall.
This repository also preserves the original full installer used during development:
./install-kali-chatgpt-mcp.sh
That installer provisions the official Kali mcp-kali-server bridge, downloads the latest official OpenAI tunnel-client, configures the tunnel service, stores the runtime key outside the repository, and performs security checks. Afterward, scripts/activate-tunnel.sh switches the tunnel profile to the 126-tool v2 server:
./scripts/activate-tunnel.sh "$HOME/.config/tunnel-client/kali-chatgpt.yaml"
sudo systemctl restart openai-kali-mcp-tunnel.service
The detailed guide explains both the direct v2 stdio route and the historical two-stage route used to build this machine.
ChatGPT test prompt
After the tunnel and app are connected, a safe first prompt is:
Use my Kali MCP app.
First call server_health.
Then count the available tools.
Verify that exec_command exposes:
- expected_runtime_seconds
- timeout_seconds
- check_after_seconds
- poll_interval_seconds
- on_timeout
Then run a harmless command such as `printf 'mcp-ok\n' && uname -s` with explicitly selected timing values.
Do not modify the system.
Explicit execution timing policy
Process-oriented tools expose these controls:
expected_runtime_seconds
timeout_seconds
check_after_seconds
poll_interval_seconds
on_timeout = kill | return_partial | continue_background
Example:
{
"command": "npm run build",
"cwd": "/home/kali/project",
"expected_runtime_seconds": 120,
"timeout_seconds": 300,
"check_after_seconds": 30,
"poll_interval_seconds": 5,
"on_timeout": "continue_background"
}
When on_timeout is continue_background, long-running work can return a durable job_id for later job_status, job_logs, or job_wait calls instead of forcing one MCP call to remain open indefinitely.
Tool families
The 126 tools include:
| Family | Examples |
|---|---|
| System | server_health, server_capabilities, system_info, environment_info |
| Filesystem | read/write/append/copy/move/delete/mkdir/stat/list/find/grep |
| Patch workflow | apply_patch, patch_history, revert_patch |
| Shell and PTY | exec_command, persistent tmux sessions, capture, interrupt |
| Jobs | start/status/logs/wait/cancel/list/cleanup |
| Processes and ports | list/info/tree/kill, port inventory and owner lookup |
| Git | status/diff/log/show/branches/checkout/add/reset/commit/restore/blame/worktrees |
| Development | detect/install/build/test/lint/typecheck/benchmark |
| Repository intelligence | tree/map/summary/frameworks/entrypoints/tests/instructions/TODOs/dependencies/symbols |
| Docker | ps/inspect/logs/exec/build/run/stop/remove/compose |
| Browser | open/navigate/text/html/screenshot/console/network/close/list |
| State | checkpoints/tasks/agent workspaces |
| Artifacts | register/create/list/info/read/delete |
| Services | status/logs/list/actions |
| Policy and sandbox | policy status/path checks/classification/sandbox/audit |
| Kali wrappers | nmap, nikto, gobuster, dirb, sqlmap, Metasploit, Hydra, John, WPScan, enum4linux |
For the generated complete catalog, see docs/TOOL_CATALOG.md.
Repository layout
mcp-connect/
├── bin/
│ ├── kali-agent
│ └── kali-agent-mcp
├── config/
│ └── kali-agent-mcp.example.json
├── docs/
│ ├── INSTALLATION.md
│ ├── ARCHITECTURE.md
│ ├── EXECUTION_POLICY.md
│ ├── OPERATIONS.md
│ ├── SECURITY_MODEL.md
│ ├── TOOL_CATALOG.md
│ ├── TEST_REPORT.md
│ └── TUNNEL_SETUP.md
├── kali_agent_mcp/
│ ├── core/
│ ├── tools/
│ ├── cli.py
│ └── server.py
├── scripts/
│ ├── setup-local.sh
│ ├── activate-tunnel.sh
│ ├── doctor.sh
│ ├── full-validate.sh
│ ├── install-browser-driver.sh
│ └── verify_all_126.py
├── systemd/
├── tests/
├── install-kali-chatgpt-mcp.sh
├── rotate-runtime-key.sh
├── pyproject.toml
└── README.md
Configuration
Copy the example only when you need custom policy settings:
cp config/kali-agent-mcp.example.json ~/.config/kali-agent-mcp/config.json
chmod 600 ~/.config/kali-agent-mcp/config.json
Default policy values include:
{
"command_timeout": 180,
"max_output_bytes": 200000,
"shell_enabled": true,
"browser_enabled": true,
"security_tools_enabled": true,
"audit_enabled": true,
"allowed_roots": ["/home/kali", "/tmp"],
"default_cwd": "/home/kali"
}
Adjust paths for your own username and trust boundary. A public repository should never contain your live config if it contains machine-specific secrets or credentials.
Runtime state
Persistent runtime state is stored outside the repository under:
~/.local/state/kali-agent-mcp/
├── artifacts/
├── audit.jsonl
├── backups/
├── browser/
├── checkpoints/
├── jobs/
├── patches/
├── sessions/
└── tasks/
Do not commit this directory.
Credential handling
The public repository is designed so that credentials remain outside Git:
- runtime API keys: external mode-
600environment file; - tunnel profiles: local machine configuration;
- GitHub credentials: use
gh auth, SSH agent, or your normal Git credential helper; .env, private-key, certificate, runtime, cache, log, verification-run, and browser dependency directories: ignored or excluded;- audit records: likely credentials are redacted by the server.
Before publishing a fork, run the secret-scan procedure in SECURITY.md.
Browser support
Browser tools use the installed Chromium binary at /usr/bin/chromium. The Python Playwright package may need a matching Node driver, so the repository installs a project-local driver under the ignored path:
.runtime/playwright-node/
Install or refresh it with:
./scripts/install-browser-driver.sh
No browser binary is committed to this repository.
Validation
Run:
./scripts/full-validate.sh
The validation pipeline compiles the Python source, runs the doctor checks, executes pytest, verifies tool-name uniqueness, and reports the discovered tool count.
For the more exhaustive integration verifier:
./scripts/verify_all_126.py
Some security-tool verification cases intentionally use loopback-only local test targets. Do not point security tools at systems you do not own or lack explicit permission to test.
Documentation
docs/INSTALLATION.md— full clone-to-ChatGPT replication guide.docs/ARCHITECTURE.md— architecture and runtime design.docs/EXECUTION_POLICY.md— explicit runtime/timeout/polling/background semantics.docs/TOOL_CATALOG.md— generated catalog of all tools.docs/SECURITY_MODEL.md— trust boundaries, path policy, auditing, and limitations.docs/OPERATIONS.md— operational commands and troubleshooting.docs/TEST_REPORT.md— validation summary.docs/TUNNEL_SETUP.md— historical secure-tunnel installer documentation.SECURITY.md— secret hygiene and vulnerability reporting guidance.
Official references
- OpenAI Secure MCP Tunnel:
https://developers.openai.com/api/docs/guides/secure-mcp-tunnels - Kali
mcp-kali-server:https://www.kali.org/tools/mcp-kali-server/ - Model Context Protocol:
https://modelcontextprotocol.io/
Responsible use
This project can execute commands and invoke offensive-security tools. Use it only on infrastructure you own or have explicit authorization to test. The maintainers and contributors are not responsible for misuse.
License
MIT License. See LICENSE.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。