Query Here
← Back to Use Cases

MCP Server Discovery

How Claude Desktop and Cursor can dynamically discover new tools.

The Context

The Model Context Protocol (MCP) has rapidly become the standard for connecting AI assistants (like Claude Desktop and Cursor) to external data sources and tools.

However, to use an MCP server, developers currently have to manually search GitHub or MCP registries, find the package, and manually add the configuration to their claude_desktop_config.json file.

The Query Here Solution

By installing the Query Here MCP Server, your assistant gains the ability to dynamically search for other MCP servers on the fly.

If you ask Claude, "I need to interact with my PostgreSQL database", Claude will use the Query Here tool to search for "postgres MCP server". We return the official @modelcontextprotocol/server-postgres package, complete with the npx command required to run it.

How to Install

Adding Query Here to your AI assistant is a one-time setup. Just add the following to your MCP configuration file:

{
  "mcpServers": {
    "queryhere": {
      "command": "npx",
      "args": [
        "-y",
        "@queryhere/mcp-server"
      ],
      "env": {
        "QUERY_HERE_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}

Try it out

Generate an API key and add it to your Claude Desktop config to give your assistant infinite tool discovery.

Generate Key