Model Context Protocol (MCP) Server
FileSearch.Tools provides a native MCP server, allowing AI assistants like Claude Desktop to directly search our database of open directories.
Capabilities
The MCP server exposes a tool called search_open_directories which lets an AI agent construct and execute search queries.
- Query construction: AI agents can use search dorks like
site:,ext:,size:autonomously. - Categories: Filter by
video,audio,pictures,documents, orarchives.
Connection Details
Our server uses the SSE (Server-Sent Events) transport.
- SSE Endpoint:
https://filesearch.tools/mcp/sse
Configuring Claude Desktop
To connect Claude Desktop to FileSearch.Tools, you need an MCP bridge that translates Claude's stdio communication into SSE over HTTP, or wait for Claude Desktop to fully support SSE remote servers directly. If using a custom SSE-compatible client, simply point it to the SSE endpoint above.
{
"mcpServers": {
"filesearch": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/sse-client", "https://filesearch.tools/mcp/sse"]
}
}
}
Note: Since FileSearch.Tools is a remote HTTP service, it uses the SSE transport. You may need an intermediary client if your agent only supports stdio.