Wraps LogoKit's company database so your AI agent can look up brand data by domain or stock ticker. Expose two tools: get_brand_by_domain takes a website like stripe.com, get_brand_by_ticker accepts AAPL or any ISIN/CUSIP/SEDOL/WKN. Both return structured records with industry classification, headcount range, founding year, HQ location, social profiles, brand colors, and logo URLs. Requires a paid LogoKit plan and a secret API key passed as a Bearer token. Works over streamable HTTP, so it drops into Cursor, Claude Code, and ChatGPT connectors without a local bridge. Reach for it when you're building research tools, CRM enrichment flows, or anything that needs to resolve a company name into clean, structured attributes.
Brand & company data for AI agents — by domain or stock ticker.
The LogoKit MCP server connects Claude, Cursor, ChatGPT, and any MCP-compatible client to LogoKit's company database. Resolve any company by website domain or by security identifier and get back a structured record: industry classification, employee range, founding year, headquarters, social profiles, brand colors, and logos.
https://mcp.logokit.com/mcpAuthorization: Bearer sk_pa_… (secret API key, paid plans)| Tool | Argument | Returns |
|---|---|---|
get_brand_by_domain | a website domain — e.g. stripe.com | full Brand Data record |
get_brand_by_ticker | a ticker / ISIN / CUSIP / SEDOL / WKN — e.g. AAPL, US0378331005 | the same record |
Only populated attributes are returned; empty fields are omitted from the response.
Pass your LogoKit secret key as a Bearer token:
Authorization: Bearer sk_pa_YOUR_TOKEN
Secret keys (sk_pa_…) are available on the Startup, Scale, and Enterprise plans. Publishable keys (pk_*) are rejected, because MCP traffic is run by your agent rather than an end user's browser. Get a key at https://logokit.com/account/api-tokens. MCP requests count against your Brand Data API quota.
claude mcp add --transport http logokit \
https://mcp.logokit.com/mcp \
--header "Authorization: Bearer sk_pa_YOUR_TOKEN"
{
"mcpServers": {
"logokit": {
"url": "https://mcp.logokit.com/mcp",
"headers": { "Authorization": "Bearer sk_pa_YOUR_TOKEN" }
}
}
}
Claude Desktop's config only loads stdio servers, so bridge via mcp-remote (requires Node.js):
{
"mcpServers": {
"logokit": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.logokit.com/mcp",
"--header",
"Authorization: Bearer sk_pa_YOUR_TOKEN"
]
}
}
}
Settings → Connectors → Advanced → enable Developer mode → Add custom connector:
https://mcp.logokit.com/mcpAuthorization, value Bearer sk_pa_YOUR_TOKENConnectors require a paid ChatGPT plan (Plus, Pro, Team, Business, Enterprise, or Edu).
This repository holds the server.json used to publish the server to the official MCP Registry as com.logokit/brand-data. Publishing steps are in PUBLISHING.md.
com.mcparmory/google-sheets
domdomegg/google-sheets-mcp
henilcalagiya/google-sheets-mcp
cct15/war-dashboard-data
moooonad/mcp-google-sheets-full
io.github.br0ski777/csv-to-json