{% extends "base.html" %} {% block title %}MCP Server - AUTARCH{% endblock %} {% block content %}

Model Context Protocol

The Model Context Protocol (MCP) lets AI assistants like Claude Desktop, Claude Code, and other MCP-compatible clients use AUTARCH's security tools directly. When connected, Claude can run nmap scans, look up IPs, capture packets, manage devices, and more — all through natural conversation.

Server Control

Checking...
Transport: {{ mcp.transport }}

SSE endpoint: http://{{ request.host.split(':')[0] }}:{{ mcp.port }}/sse

Transport & Network Settings

Security

Tool Management

Enable or disable individual MCP tools. Disabled tools will not be exposed to connected clients.

Tool Timeouts

Advanced

Integration

Claude Desktop / Claude Code config: Add this to your claude_desktop_config.json or .claude/settings.json:

Loading...

CLI Commands:

# stdio mode (Claude Desktop / Claude Code)
python autarch.py --mcp stdio

# SSE mode (remote / web clients)
python autarch.py --mcp sse --mcp-port {{ mcp.port }}
{% endblock %}