README.md
@romanshablio
关于 README.md
Lightweight Python HTTP service that searches local files by name and returns JSON results for tools such as Cline.
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"mcp-server-romanshablio": {
"command": "python",
"args": [
"mcp_server.py",
"--port",
"8080"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is File Finder Server?
File Finder Server is a small Python service that searches for files by name on the user's local computer and returns results as JSON. It was created as an MCP-style helper that can be connected to tools such as Cline in VS Code.
How to use File Finder Server?
Clone the repository, start the server with python mcp_server.py --port 8080, and configure Cline in VS Code by copying the appropriate configuration into cline_config.json and restarting Cline. The server exposes a single HTTP endpoint /search that accepts a query parameter.
Key features of File Finder Server
- Runs locally on the user's computer.
- Exposes a simple HTTP search endpoint.
- Searches files by query and returns JSON results.
- Saves the latest search output to
search_results.json. - Can be connected to Cline in VS Code.
Use cases of File Finder Server
- Automating local file search from external tools.
- Providing a simple API for an AI assistant to locate files.
- Integrating local file search into a GUI or other program.
- Using with Cline in VS Code for quick file lookups.
FAQ from File Finder Server
What does File Finder Server do exactly?
It runs an HTTP server that scans the local computer for filenames matching a query string and returns the results as JSON. It also saves the results to search_results.json.
How do I start the server?
After cloning the repository, run python mcp_server.py --port 8080 from the project folder. The server will listen on the specified port (default 8080).
How do I test if the server is working?
Send a GET request to http://localhost:8080/search?query=example using curl, a browser, or another tool. The server will respond with a JSON array of matching files.
How do I connect File Finder Server to Cline in VS Code?
Open cline_config.json, copy the server configuration provided in the repository into it, and then restart Cline. The server will then be available as a tool within Cline.
Does the server require any authentication or special permissions?
No authentication is mentioned. The server runs locally and scans the filesystem using the permissions of the user who starts the process.
记忆与知识 分类下的更多 MCP 服务器
📓 GistPad MCP
lostintangent📓 An MCP server for managing your personal knowledge, daily notes, and re-usable prompts via GitHub Gists
Rust Docs MCP Server
Govcraft🦀 Prevents outdated Rust code suggestions from AI assistants. This MCP server fetches current crate docs, uses embeddings/LLMs, and provides accurate context via a tool call.
🧠 Ultimate MCP Server
DicklesworthstoneComprehensive MCP server exposing dozens of capabilities to AI agents: multi-provider LLM delegation, browser automation, document processing, vector ops, and cognitive memory systems
Solomd
zhitongblogA markdown editor — and the bridge to your LLM. Local-first, MIT, ~15 MB. Bundled MCP server lets Claude Code / Codex / Cursor drive your vault directly. 14 AI providers BYOK.

Dash Api Docs Mcp Server
KapeliMCP server for Dash, the macOS API documentation browser
评论