SkyXtools-Mcp
OfficialClick 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., "@SkyXtools-Mcpcheck listener health"
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.
SkyXtools-Mcp — Manual Listener
Python-only implementation following the same connection pattern used by HexStrike AI:
OpenCode
└─ skyxtools_mcp.py (MCP stdio bridge; OpenCode starts this)
└─ HTTP requests to http://127.0.0.1:8888
└─ skyxtools_server.py (listener; you start this manually)
└─ local security toolsThe listener is a local REST service, not a remote MCP endpoint. This keeps the long-running strategy state, evidence, and tool processes separate from OpenCode.
Install
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
cp .env.example .env
nano .envSet authorized scope:
SKY_SCOPE=example.com,*.example.comOr use:
./scripts/install.shRelated MCP server: wrg-mcp-server
1. Start listener manually
Keep this terminal open:
source .venv/bin/activate
set -a; source .env; set +a
python3 skyxtools_server.pyCustom port or debug:
python3 skyxtools_server.py --port 8888 --debugVerify:
curl http://127.0.0.1:8888/healthExpected:
{"status":"healthy","service":"SkyXtools-Mcp","mode":"manual-listener"}2. Configure OpenCode bridge
Copy opencode.example.jsonc into your OpenCode configuration and replace /ABSOLUTE/PATH/SkyXtools-Mcp with the actual repository path.
Example:
{
"mcp": {
"skyxtools-mcp": {
"type": "local",
"command": "/home/kali/SkyXtools-Mcp/.venv/bin/python",
"args": [
"/home/kali/SkyXtools-Mcp/skyxtools_mcp.py",
"--server",
"http://127.0.0.1:8888"
],
"enabled": true,
"timeout": 300000
}
}
}OpenCode starts only the lightweight stdio bridge. The HTTP listener must already be running.
Check
opencode mcp listInside OpenCode, call listener_health before other tools.
Stop listener
Return to the listener terminal and press:
Ctrl+CComponents
skyxtools_server.py— manually started Flask listener.skyxtools_mcp.py— FastMCP stdio bridge used by OpenCode.skyxtools_core.py— scope guard, adapters, evidence, and strategy engine..opencode/skills/.../SKILL.md— OpenCode strategy skill.
The listener refuses non-loopback bind addresses. Do not expose port 8888 publicly.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA Python-based MCP server that enables integration with Microsoft Security Copilot and Microsoft Sentinel, allowing users to run KQL queries, manage skillsets/plugins, and execute prompts in Security Copilot.Last updated23MIT
- Alicense-qualityAmaintenanceAn MCP server that exposes a 60+ tool security and threat-intel stack to AI agents, enabling secret scanning, Sigma rule generation, ransomware lookup, OSINT, and deep research.Last updated1MIT
- AlicenseAqualityBmaintenanceAn Open Sourced Model Context Protocol (MCP) Local server that gives Claude real-time cybersecurity reconnaissance capabilitiesLast updated1419MIT
- AlicenseAqualityDmaintenanceMCP server that exposes OSSEC HIDS security monitoring capabilities as tools, resources, and prompts for AI assistants.Last updated262MIT
Related MCP Connectors
MCP server for Pentest-Tools.com: run scans, manage findings and reports via your preffered LLM.
Security scanner for MCP servers. Detect vulnerabilities, prompt injection, and tool poisoning.
MCP server exposing the Backtest360 engine API as tools for AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/skyxtools/SkyXtools-Mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server