ssh-find

Search remote server directories recursively with glob pattern matching.

6|Updated Apr 17, 2026
One-click install
npx skills add https://github.com/Nightreaver/python-ssh-mcp --skill ssh-find
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ssh-find
Source: https://github.com/Nightreaver/python-ssh-mcp/tree/main/skills/ssh-find
Command: npx skills add https://github.com/Nightreaver/python-ssh-mcp --skill ssh-find

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill simplifies the process of searching for files on remote servers by providing a recursive directory search function with pattern matching.

Core Features & Use Cases

  • Recursive Search: Look for files by name pattern in a directory and its subdirectories.
  • Depth Control: Limit the depth of the search to avoid excessive processing time and system load.
  • Pattern Matching: Use glob-like patterns to match file names.
  • Use Case: Quickly locate a log file or configuration file on a remote server by specifying its name pattern.

Quick Start

Use the ssh-find skill to search for all '.log' files in the /var/log directory of the 'web01' host.

Frequently Asked Questions about ssh-find

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I search for files on a remote server by name pattern?

To search for files on a remote server by name pattern, you use recursive directory searching combined with glob-like pattern matching to locate specific files quickly within nested directories.

Can I limit the depth of a remote directory search to reduce system load?

Yes, you can limit the depth of a remote directory search to avoid excessive processing time and system load. Depth control restricts how deep the recursive search traverses into subdirectories.

How do I find all log files in a specific directory on a remote host?

You can find all log files in a specific directory on a remote host by specifying the directory path and applying a glob-like pattern such as '.log' to match file names recursively during the search process.

Does this remote file discovery method support regex-based file name matching?

Yes, remote file discovery supports regex-based file name matching in addition to glob-like patterns, allowing you to perform recursive directory searches with flexible and precise pattern matching on remote servers.

What is the best way to locate configuration files across remote server subdirectories?

The best way to locate configuration files across remote server subdirectories is using recursive directory search with pattern matching, which efficiently discovers files by name pattern while offering depth limitation to manage system load.