README.md
Очень удобный поисковик на python. Можно внедрить на сайт или использовать локально на ПК с любой ОС.
Overview
MCP File Finder Server is a Python-based server that allows users to search for files on their computer by name and returns the results in JSON format.
To use the MCP File Finder Server, clone the repository, run the server using Python, and configure the Cline tool in VSCode to interact with the server.
- Local file searching capability - Returns search results in JSON format - Integrates with Cline in VSCode for seamless interaction
- Quickly finding files on a local machine by name.
- Automating file search processes in development environments.
- Integrating file search functionality into other applications.
Add to your AI client
Use these steps to connect README.md 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-romanshablio": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-romanshablio"
]
}
}
}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-romanshablio": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-romanshablio"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-romanshablio": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-romanshablio"
]
}
}
}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-romanshablio": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-romanshablio"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-romanshablio": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-romanshablio"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-romanshablio": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-romanshablio"
]
}
}
}FAQ
Can I run the MCP File Finder Server on any operating system?
Yes! The server can run on any system that supports Python.
How do I send a search request?
You can send a GET request using curl or configure Cline in VSCode to send requests automatically.
What format does the server return the search results in?
The server returns the results in JSON format.