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────────────────────────────────────────────bolt remote connected 6filesystem 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 boltOutput:
Server: bolt━━━━━━━━━━━━
Status: ConnectedType: Remote (HTTP)Uptime: 2h 15mTools: 6Resources: 3Memory: 45MBHealth Check
cyberstrike mcp healthTests all server connections.
Start Server
Start Specific Server
cyberstrike mcp start boltStart All Servers
cyberstrike mcp start --allStart with Debug
cyberstrike mcp start bolt --debugStop Server
Stop Specific Server
cyberstrike mcp stop boltStop All Servers
cyberstrike mcp stop --allForce Stop
cyberstrike mcp stop bolt --forceRestart Server
Restart Specific Server
cyberstrike mcp restart boltRestart 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 my-scanner \ --command "node scanner-server.js" \ --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 boltOpens configuration in editor.
Set Option
cyberstrike mcp config bolt --set timeout=60000Get Option
cyberstrike mcp config bolt --get timeoutList Options
cyberstrike mcp config bolt --listTools
List Server Tools
cyberstrike mcp tools boltOutput:
Tools from 'bolt'━━━━━━━━━━━━━━━━━
Name Description────────────────────────────nmap Network scannernuclei Vulnerability scannersubfinder Subdomain discoveryhttpx HTTP probingffuf Web fuzzerkatana Web crawlerTool Details
cyberstrike mcp tools bolt nmapOutput:
Tool: nmap━━━━━━━━━━
Description: Network scanner for port discovery and service detectionServer: bolt
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 boltFollow Logs
cyberstrike mcp logs bolt --followLast N Lines
cyberstrike mcp logs bolt --lines 100Filter Logs
cyberstrike mcp logs bolt --filter "error"Debug
Enable Debug Mode
cyberstrike mcp debug bolt --enableTest Tool
cyberstrike mcp debug bolt --test nmap --args '{"target": "localhost"}'Trace Requests
cyberstrike mcp debug bolt --traceImport/Export
Export Configuration
cyberstrike mcp export > mcp-config.jsonImport Configuration
cyberstrike mcp import mcp-config.jsonShare Configuration
cyberstrike mcp export bolt > bolt-config.jsonInstallation
Install from URL
cyberstrike mcp install https://github.com/user/mcp-server.gitUninstall
cyberstrike mcp uninstall my-toolsUpdate
Update Server
cyberstrike mcp update boltUpdate All
cyberstrike mcp update --allCheck for Updates
cyberstrike mcp update --checkTroubleshooting
Connection Failed
Error: Failed to connect to MCP server: boltSolutions:
# Check server statuscyberstrike mcp status bolt
# View logscyberstrike mcp logs bolt
# Restart servercyberstrike mcp restart boltTool Not Found
Error: Tool 'nmap' not foundVerify:
# List available toolscyberstrike mcp tools bolt
# Check server is connectedcyberstrike mcp status boltTimeout
Error: MCP server connection timeout# Increase timeoutcyberstrike mcp config bolt --set timeout=120000
# Check server healthcyberstrike mcp health boltExamples
Set Up Bolt Security Tools
# Configure Bolt (Docker-based)cyberstrike mcp config bolt --set auto-start=true
# Startcyberstrike mcp start bolt
# Verifycyberstrike mcp tools boltAdd 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