MCP Commands
The cyberstrike mcp commands manage Model Context Protocol servers and their configurations.
📸 SCREENSHOT: mcp-commands.png
MCP command interface
List Servers
Show All Servers
cyberstrike mcp listOutput:
MCP Servers━━━━━━━━━━━
Name Type Status Tools────────────────────────────────────────────kali local connected 15filesystem local connected 3github remote connected 8custom-tools local stopped -JSON Output
cyberstrike mcp list --jsonShow Tools
cyberstrike mcp list --toolsShows all tools from all servers.
Server Status
Check Specific Server
cyberstrike mcp status kaliOutput:
Server: kali━━━━━━━━━━━━
Status: ConnectedType: Local (stdio)Uptime: 2h 15mTools: 15Resources: 3Memory: 45MBHealth Check
cyberstrike mcp healthTests all server connections.
Start Server
Start Specific Server
cyberstrike mcp start kaliStart All Servers
cyberstrike mcp start --allStart with Debug
cyberstrike mcp start kali --debugStop Server
Stop Specific Server
cyberstrike mcp stop kaliStop All Servers
cyberstrike mcp stop --allForce Stop
cyberstrike mcp stop kali --forceRestart Server
Restart Specific Server
cyberstrike mcp restart kaliRestart All
cyberstrike mcp restart --allAdd Server
Interactive Add
cyberstrike mcp addPrompts for server configuration.
Add Local Server
cyberstrike mcp add my-tools --command "node server.js"Add Remote Server
cyberstrike mcp add remote-tools --url "https://mcp.example.com/sse"With Options
cyberstrike mcp add kali \ --command "npx @cyberstrike/mcp-kali" \ --env "DEBUG=true" \ --auto-startRemove Server
Remove Server
cyberstrike mcp remove my-toolsRemove with Confirmation
cyberstrike mcp remove my-tools --yesConfigure Server
Edit Configuration
cyberstrike mcp config kaliOpens configuration in editor.
Set Option
cyberstrike mcp config kali --set timeout=60000Get Option
cyberstrike mcp config kali --get timeoutList Options
cyberstrike mcp config kali --listTools
List Server Tools
cyberstrike mcp tools kaliOutput:
Tools from 'kali'━━━━━━━━━━━━━━━━━
Name Description────────────────────────────nmap Network scannernuclei Vulnerability scannersqlmap SQL injection toolffuf Web fuzzerhydra Password cracker...Tool Details
cyberstrike mcp tools kali nmapOutput:
Tool: nmap━━━━━━━━━━
Description: Network scanner for port discovery and service detectionServer: kali
Parameters: target (required): Target host or network ports (optional): Port specification flags (optional): Additional nmap flags
Example: nmap --target 192.168.1.1 --ports "1-1000"Search Tools
cyberstrike mcp tools --search "vulnerability"Authentication
Login to Remote Server
cyberstrike mcp auth github-mcpOpens browser for OAuth if required.
Logout
cyberstrike mcp auth github-mcp --logoutRefresh Token
cyberstrike mcp auth github-mcp --refreshLogs
View Server Logs
cyberstrike mcp logs kaliFollow Logs
cyberstrike mcp logs kali --followLast N Lines
cyberstrike mcp logs kali --lines 100Filter Logs
cyberstrike mcp logs kali --filter "error"Debug
Enable Debug Mode
cyberstrike mcp debug kali --enableTest Tool
cyberstrike mcp debug kali --test nmap --args '{"target": "localhost"}'Trace Requests
cyberstrike mcp debug kali --traceImport/Export
Export Configuration
cyberstrike mcp export > mcp-config.jsonImport Configuration
cyberstrike mcp import mcp-config.jsonShare Configuration
cyberstrike mcp export kali > kali-config.jsonInstallation
Install from Registry
cyberstrike mcp install @cyberstrike/mcp-kaliInstall from URL
cyberstrike mcp install https://github.com/user/mcp-server.gitUninstall
cyberstrike mcp uninstall @cyberstrike/mcp-kaliUpdate
Update Server
cyberstrike mcp update kaliUpdate All
cyberstrike mcp update --allCheck for Updates
cyberstrike mcp update --checkTroubleshooting
Connection Failed
Error: Failed to connect to MCP server: kaliSolutions:
# Check server statuscyberstrike mcp status kali
# View logscyberstrike mcp logs kali
# Restart servercyberstrike mcp restart kaliTool Not Found
Error: Tool 'nmap' not foundVerify:
# List available toolscyberstrike mcp tools kali
# Check server is connectedcyberstrike mcp status kaliTimeout
Error: MCP server connection timeout# Increase timeoutcyberstrike mcp config kali --set timeout=120000
# Check server healthcyberstrike mcp health kaliExamples
Set Up Kali Tools
# Installcyberstrike mcp install @cyberstrike/mcp-kali
# Configurecyberstrike mcp config kali --set auto-start=true
# Startcyberstrike mcp start kali
# Verifycyberstrike mcp tools kaliAdd Custom Server
# Add servercyberstrike mcp add my-scanner \ --command "python scanner_server.py" \ --cwd "/opt/scanner"
# Startcyberstrike mcp start my-scanner
# Testcyberstrike mcp debug my-scanner --test scan --args '{"target": "localhost"}'Tip
Use cyberstrike mcp list --tools to discover all available tools across servers.
Related Documentation
- MCP Overview - MCP basics
- Local Servers - Server configuration
- Creating Servers - Build custom servers