Skip to main content
Glama
README.md
# Qwery MCP Server

The **search engine for AI agents** — now available as an MCP server.

Search, compare, and discover 500+ businesses across 112 categories. Structured pricing, verified listings, edge-fast responses.

## Tools

| Tool | Description |
|------|-------------|
| `search` | Search businesses with filters (query, category, pricing, country) |
| `get_listing` | Get full details for a specific business |
| `compare` | Compare multiple businesses side by side |
| `categories` | List all 112 categories across 10 domains |
| `stats` | Get index statistics |

## Quick Setup

### Claude Desktop

Add to your `claude_desktop_config.json`:

```json
{
  "mcpServers": {
    "qwery": {
      "command": "npx",
      "args": ["-y", "qwery-mcp-server"]
    }
  }
}
```

### From Source

```bash
git clone https://github.com/kingroyalabstergo-agent/qwery-mcp
cd qwery-mcp
npm install
npm run build
npm start
```

## Example Usage

**"Find me a CRM under $50/month"**
→ `search({ query: "CRM", max_price: 50 })`

**"Compare Stripe vs Paddle vs LemonSqueezy"**
→ `compare({ slugs: ["stripe", "paddle", "lemonsqueezy"] })`

**"What hosting platforms have free tiers?"**
→ `search({ category: "developer-tools/hosting", max_price: 0 })`

## API

Powered by [api.qwery.world](https://api.qwery.world) — edge-deployed on Cloudflare Workers with sub-50ms response times globally.

## License

MIT — [qwery.world](https://qwery.world)