streamable-httpMITupdated 3mo ago
Brand & company data for AI agents — by domain or stock ticker.
What can you do with LogoKit Brand & Company Data?
LogoKit MCP Server
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.
- Endpoint:
https://mcp.logokit.com/mcp - Transport: MCP Streamable HTTP
- Auth:
Authorization: Bearer sk_pa_…(secret API key, paid plans) - Landing page: https://logokit.com/mcp
- Docs: https://docs.logokit.com/mcp/overview
Tools
| 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.
Authentication
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.
Install
Claude Code
claude mcp add --transport http logokit \
https://mcp.logokit.com/mcp \
--header "Authorization: Bearer sk_pa_YOUR_TOKEN"
Cursor, VS Code, Windsurf, and other HTTP clients
{
"mcpServers": {
"logokit": {
"url": "https://mcp.logokit.com/mcp",
"headers": { "Authorization": "Bearer sk_pa_YOUR_TOKEN" }
}
}
}
Claude Desktop
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"
]
}
}
}
ChatGPT
Settings → Connectors → Advanced → enable Developer mode → Add custom connector:
- MCP server URL:
https://mcp.logokit.com/mcp - Authentication: Custom header → name
Authorization, valueBearer sk_pa_YOUR_TOKEN
Connectors require a paid ChatGPT plan (Plus, Pro, Team, Business, Enterprise, or Edu).
Official MCP Registry
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.
License
Install
Add LogoKit Brand & Company Data to your client. Pick the one you use.
claude mcp add --transport http logokit-brand-company-data https://mcp.logokit.com/mcpcodex mcp add logokit-brand-company-data --url https://mcp.logokit.com/mcp{
"mcpServers": {
"logokit-brand-company-data": {
"url": "https://mcp.logokit.com/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"logokit-brand-company-data": {
"type": "http",
"url": "https://mcp.logokit.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"logokit-brand-company-data": {
"url": "https://mcp.logokit.com/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"logokit-brand-company-data": {
"serverUrl": "https://mcp.logokit.com/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
2 tools
LogoKit Brand & Company Data exposes 2 tools to a connected agent.
- get_brand_by_domain
- a website domain — e.g. `stripe.com`
- get_brand_by_ticker
- a ticker / ISIN / CUSIP / SEDOL / WKN — e.g. `AAPL`, `US0378331005`
Score
67 / 100
Good
- Documentation22/25
- Maintenance13/25
- Trust16/20
- Capability4/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 98 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 2 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | May 25, 2026 |