MCP Server  ● Running

Local MCP tool server. Gives Claude access to the local machine — filesystem, shell, network, process inspection, HAL API, and more.

Connection Endpoints

URLPurpose
https://localhost:11435/mcpMCP streamable HTTP transport (2025 spec) — use this in Claude Desktop
https://localhost:11435/mcp/sseMCP SSE stream — legacy transport
https://localhost:11435/mcp/messageMCP message POST (legacy SSE companion)
https://localhost:11435/healthHealth check (JSON)
https://localhost:11435/management/statusService version, uptime, connected clients (JSON)

Add to Claude Desktop

Open %APPDATA%\Claude\claude_desktop_config.json and add the mcp-server entry under mcpServers. Then fully quit and reopen Claude Desktop.

{
  "mcpServers": {
    "mcp-server": {
      "url": "https://localhost:11435/mcp"
    }
  }
}

Uses the MCP streamable HTTP transport (2025 spec) — no Node.js or npx required.

Available Tool Categories

CategoryTools
Filesystemread_file, write_file, read_multiple_files, delete_file
Shellrun_powershell, run_python
Systemkill_process

Current Settings

Edit %USERPROFILE%\.mcp-server\Settings.toml and restart the service to change IP or port.

[server]
ip         = "0.0.0.0"
port       = 11435
emerg_port = 11486

[paths]
log_retention_days = 2