Documentation

Everything you need to get started with Secronyx and make the most of intent-driven diagnostics.

Getting Started

1. Download the Agent

Visit the Downloads page and choose the installer for your operating system.

2. Install

Windows

Run the MSI installer. The agent will be installed as a Windows service and start automatically.

macOS

Open the PKG file and follow the prompts. The agent runs as a LaunchDaemon.

Linux

Use dpkg, rpm, or extract the tarball. The agent installs as a systemd service.

# Debian/Ubuntu
sudo dpkg -i mcp-sysinfo-linux-amd64.deb

# RHEL/CentOS/Fedora
sudo rpm -i mcp-sysinfo-linux-amd64.rpm

3. Sign In

Go to your Dashboard and sign in. Your machine should appear as a registered instance within a few moments.

4. Start Chatting

Click the "Chat" button next to your instance to start asking questions about your system. Try asking things like:

  • "What's using the most CPU right now?"
  • "Show me disk usage and any space concerns"
  • "Are there any failed services?"
  • "Check network connectivity and open ports"

Configuration

Configuration File Location

Windows C:\ProgramData\Secronyx\config.json
macOS /etc/secronyx/config.json
Linux /etc/secronyx/config.json

Service Management

Windows

# Check status
sc query "MCP System Info"

# Restart service
net stop "MCP System Info" && net start "MCP System Info"

macOS

# Check status
sudo launchctl list | grep secronyx

# Restart service
sudo launchctl unload /Library/LaunchDaemons/com.secronyx.mcp-sysinfo.plist
sudo launchctl load /Library/LaunchDaemons/com.secronyx.mcp-sysinfo.plist

Linux

# Check status
sudo systemctl status mcp-sysinfo

# Restart service
sudo systemctl restart mcp-sysinfo

Using the Chat Interface

The Secronyx chat interface lets you interact with your systems using natural language. The AI will translate your questions into the appropriate diagnostic queries and provide analyzed results.

Example Conversations

"Why is this machine running slow?"

The AI will check CPU usage, memory consumption, disk I/O, and running processes to identify potential bottlenecks.

"Check the security posture of this system"

The AI will review firewall status, user accounts, security software, and recent security events.

"Show me recent errors in the logs"

If log access is enabled, the AI will search system and application logs for errors and warnings. Log access is customer-configurable with optional redaction and encryption.

"What software is installed and are there any updates pending?"

The AI will enumerate installed applications and check for available updates where possible.

Tips for Best Results

  • Be specific about what you're looking for - "check disk space" is more efficient than "check everything"
  • Ask follow-up questions - the AI maintains context within a session
  • Describe symptoms if troubleshooting - "the application keeps crashing" gives helpful context
  • The agent is read-only - it can diagnose but won't make changes to your system

Need Help?