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.

TOOL search_open_directories

Capabilities

The MCP server exposes a tool called search_open_directories which lets an AI agent construct and execute search queries.

Features:

  • Query construction - AI agents can use search dorks like site:, ext:, size: autonomously.
  • Categories - Filter by video, audio, pictures, documents, or archives.
SSE https://filesearch.tools/mcp/sse

Connection Details

Our server uses the SSE (Server-Sent Events) transport.

Endpoint:

  • SSE Endpoint - https://filesearch.tools/mcp/sse
CONFIG claude_desktop_config.json

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.

Example Configuration:

{
  "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.