drio
Open app

MCP Server для поиска файлов на диске

Source

Catalog onlyCatalog onlySTDIO

Overview

MCP Server is a tool designed for searching files on a disk by a fragment of the path and returning information about them in JSON format.

To use MCP Server, run the command in the terminal: python mcp_server.py <Path Fragment> <File Name>.

  • Search for files based on path fragments. - Returns detailed file information in JSON format. - Simple command-line interface for ease of use.
  1. Quickly locating files in large directories.
  2. Integrating file search functionality into other applications.
  3. Automating file management tasks.

Add to your AI client

Use these steps to connect MCP Server для поиска файлов на диске in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server-fekdaz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-fekdaz"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-server-fekdaz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-fekdaz"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-fekdaz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-fekdaz"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-server-fekdaz": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-fekdaz"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-fekdaz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-fekdaz"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-fekdaz": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-fekdaz"
      ]
    }
  }
}

FAQ

Can MCP Server search for any file type?

Yes! MCP Server can search for any file type as long as you provide the correct path fragment and file name.

Is MCP Server easy to install?

Yes! Installation is straightforward, requiring only Python to run the server.

What output format does MCP Server provide?

MCP Server provides the output in JSON format, making it easy to parse and use in applications.