MCP.so
登录

MCP File Finder

@cavil2015

关于 MCP File Finder

MCP server on Python

基本信息

分类

其他

运行时

python

传输方式

stdio

发布者

cavil2015

配置

暂无标准配置

该服务器的 README 中没有可解析的 MCP 配置块,请前往代码仓库查看安装说明。

代码仓库

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is MCP File Finder?

MCP File Finder is an MCP (Model Context Protocol) server that enables searching for files on the filesystem by matching a fragment of the file path. It is intended for developers or any users who need a simple, local HTTP API to locate files on a machine.

How to use MCP File Finder?

Install Python 3.8 or later, clone the repository, install dependencies with pip install -r requirements.txt, then run the server with python mcp_server.py. The server starts on http://127.0.0.1:5000. Send GET requests to the /find endpoint with query (file path fragment) and dir (starting directory) parameters.

Key features of MCP File Finder

  • Searches files by any fragment of the file path.
  • Returns results as JSON with name, full path, size, and creation date.
  • Simple HTTP API: one endpoint (/find) with two parameters.
  • Lightweight – runs locally with no external services required.
  • Open-source and easy to modify.

Use cases of MCP File Finder

  • Quickly locate a file on your development machine using only a partial path.
  • Automate file discovery in scripts or other tools that consume JSON.
  • Integrate file search capabilities into an MCP‑compatible client or agent.

FAQ from MCP File Finder

Does MCP File Finder require any external databases or services?

No, it is a self‑contained Python server that scans the local filesystem on each request.

What Python version is needed?

Python 3.8 or higher is required.

Where does the server listen by default?

It binds to http://127.0.0.1:5000.

What transport protocol does it use?

The server uses plain HTTP. No authentication mechanisms are mentioned.

Are there any known limits on file system depth or number of results?

The README does not specify limits; the server will search recursively from the given dir path.

评论

其他 分类下的更多 MCP 服务器