# Logo.dev — how to use (mcp.ai)

Connect your Logo.dev account and use 2 tools for images and design straight from your AI agent. Connect with your own API key. Logo.dev provides a high-quality logo API and company brand database, enabling developers to retrieve official high-resolution logos from any domain without scraping or manual effort.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_logo_dev?ms=1787291460000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `logo_dev_get_logo_image`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/logo_dev`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/logo_dev/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/logo_dev/get/logo/image` — Tool to retrieve the logo image for a domain. Use when you need the raw image bytes (PNG or SVG) of a specific domain's logo. Use after validating the domain string.
  - body: { token: string, domain: string }
- `POST https://api.mcp.ai/api/logo_dev/search/brand` — Tool to search for brands based on a query string. Returns existing brand metadata only — no logo creation or editing. Use when you need to retrieve a list of matching brands with optional pagination 
  - body: { limit?: integer, query: string, offset?: integer, country?: string, industry?: string }

## Example prompts
- "What can I do in Logo.dev?"
- "Show me a summary of my Logo.dev account"

## More
- Page: https://mcp.ai/logo_dev
- Agent spec (llms.txt): https://mcp.ai/logo_dev/llms.txt
- Postman collection: https://mcp.ai/logo_dev/postman.json
