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.

Connection Details

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

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.