Documentation Index
Fetch the complete documentation index at: https://docs.logokit.com/llms.txt
Use this file to discover all available pages before exploring further.
The LogoKit MCP server is available on Startup, Scale, and Enterprise
plans. It uses the same secret API key as the Brand Data API — upgrade
here if you are on the free plan.
What it is
LogoKit MCP is a hosted Model Context Protocol server that exposes LogoKit’s brand database to AI assistants. Your agent can look up any company by domain or by financial identifier (ticker, ISIN, CUSIP, SEDOL, WKN) and receive structured Brand Data — logo URL, brand colors, social profiles, headquarters, founding year, employee range, and GICS classification.- Endpoint:
https://mcp.logokit.com/mcp - Transport: Streamable HTTP (JSON-RPC 2.0)
- Protocol version:
2024-11-05 - Authentication: Bearer secret key (
sk_pa_…orsk_en_…)
Authentication
Pass your secret API key in theAuthorization header:
pk_*) are rejected because MCP traffic is run by your agent, not an end-user’s browser. Find your secret key in the API Tokens dashboard.
Tools
The MCP server exposes two tools. Both return the same Brand Data record.get_brand_by_domain
Look up a brand by its canonical website domain. Subdomains and www. prefixes are normalized automatically.
| Argument | Type | Required | Description |
|---|---|---|---|
domain | string | yes | Website domain — e.g. stripe.com, apple.com |
Example call
get_brand_by_ticker
Look up a brand by a financial security identifier. Accepts stock tickers, ISIN, CUSIP, SEDOL, and WKN — case-insensitive.
| Argument | Type | Required | Description |
|---|---|---|---|
symbol | string | yes | Ticker (AAPL), ISIN (US0378331005), CUSIP (037833100), SEDOL (2046251), or WKN (865985) |
Example call
Response shape
A successful tool call returns the Brand Data record as both pretty-printed text content and structured content:Errors
Errors follow the JSON-RPC 2.0 spec. Common cases:| Code | Meaning |
|---|---|
-32001 | Unauthorized — missing/invalid key, banned, inactive, or quota exceeded |
-32601 | Method not found |
-32602 | Invalid arguments (unknown tool, missing required arg) |
-32700 | Parse error — invalid JSON |
-32603 | Internal server error |
isError: true result with a descriptive message rather than a JSON-RPC error — so the agent can recover gracefully and ask the user for a different identifier.
Usage and quotas
MCP requests count against your Brand Data API quota. You can monitor your usage in the developer dashboard. Plan limits are 25K and 100K requests/day for Startup and Scale respectively. Token status (active, usage_exceeded, banned) is enforced on every request — see Rate Limits for details.
Next step
Install in your client
Copy-pasteable configs for Claude Desktop, Claude Code, Cursor, VS Code,
Codex, Windsurf, ChatGPT, and any other MCP-compatible client.

