# Brofindai — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and discover AI tools and MCP servers from the BroFindAI directory to find the perfect solutions for your projects. Quickly browse through curated listings of available tools and servers to compare features and functionality.

**Category:** Developer Tools | **Website:** [brofindai.com/](https://brofindai.com/) | **Docs:** [parse.bot/marketplace/f42ccc44-1e41-4fd9-bfe3-e453b973a55a/brofindai-com-api](https://parse.bot/marketplace/f42ccc44-1e41-4fd9-bfe3-e453b973a55a/brofindai-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-brofindai-com-api-f42ccc44/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_mcp_servers

Search 320+ open-source Model Context Protocol (MCP) servers. Matches query against server name, description, category, and tags. Results are sourced from the punkpeye/awesome-mcp-servers curated list.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Filter by MCP server category (e.g. Databases, Browser Automation, Coding Agents). Case-insensitive match. |
| `limit` | integer | No | Maximum number of servers to return, between 1 and 100. |
| `query` | string | No | Search term matched against server name, description, category, and tags. Omitting returns all servers. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-brofindai-com-api-f42ccc44/search_mcp_servers \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","limit":"<integer>","query":"<string>"}'
```

### search_tools

Full-text search across 560+ curated AI tools. Matches against name, tagline, description, category, and tags. Results are ordered by votes descending. Each tool includes its category, pricing model, platform availability, and tags. Use offset and limit for manual pagination.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Filter by AI tool category. Omitting returns tools from all categories. |
| `limit` | integer | No | Maximum number of tools to return per page, between 1 and 100. |
| `offset` | integer | No | Number of items to skip for pagination. |
| `query` | string | No | Search term matched against tool name, tagline, description, category, and tags. Omitting returns all tools. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-brofindai-com-api-f42ccc44/search_tools \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","limit":"<integer>","offset":"<integer>","query":"<string>"}'
```
