- Home
- MCP servers
- Logo.dev
Logo.dev
- typescript
0
GitHub Stars
typescript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"nova-3951-logodev-mcp": {
"command": "node",
"args": [
"/absolute/path/to/mcp-logo-dev/build/index.js"
],
"env": {
"LOGO_DEV_API_KEY": "YOUR_API_KEY"
}
}
}
}You can search for company logos and retrieve direct logo URLs with customization options using this MCP server. It exposes practical tools to discover logos by brand or company name and to fetch logo images in preferred formats and themes, ready to deploy in your workflow or via Smithery.
How to use
You interact with this MCP server through an MCP client by calling its available tools. First, search for logos by providing a brand or company name to locate matching entries, then pick a result to obtain a direct logo URL with your chosen options. You can tailor the output by selecting the image format (png, jpg, webp), a light or dark theme, optional greyscale, and a desired size. The server returns the logo URL along with metadata about the match so you know the exact domain and branding.
Practical usage patterns include: finding a company by name to confirm its official domain, then requesting the logo in your preferred format and theme for use on websites, apps, or documents. You can perform multiple searches and fetch distinct logos as needed. All results include the domain and the direct logo URL suitable for embedding or download.
How to install
Prerequisites: you need Node.js 20 or higher and a Logo.dev API key.
Step by step setup and run flow:
-
Install dependencies
-
Build the project
-
Run in STDIO mode with your API key set in the environment
Configuration and deployment notes
Smithery deployment is supported and designed to automatically configure this MCP server after you connect your repository.
Local development uses environment variables to supply the Logo.dev API key and runs the compiled JavaScript entrypoint. See the Claude Desktop configuration example for integrating with Claude Desktop.
API usage and endpoints provided by Logo.dev are available in the API Reference: search and image CDN endpoints are used to locate logos and fetch logo URLs.
Security and usage notes
Keep your Logo.dev API key secret. Do not share it in public code repositories. When deploying, ensure the runtime environment securely exposes the key to the MCP process.
Only use the server with trusted MCP clients and tooling to avoid exposing logo URLs to untrusted contexts.
Examples
Search for a brand and retrieve a logo URL with a chosen format and theme, for example requesting the Google logo in WebP format with a dark theme.
Notes on local usage and Claude Desktop configuration
Prerequisites: Node.js 20+, a Logo.dev API key.
Installation and build steps:
export LOGO_DEV_API_KEY="your-api-key-here"
node build/index.js
Claude Desktop configuration example to run the server locally within Claude's environment:
{
"mcpServers": {
"logo_dev": {
"command": "node",
"args": ["/absolute/path/to/mcp-logo-dev/build/index.js"],
"env": {
"LOGO_DEV_API_KEY": "YOUR_API_KEY"
}
}
}
}
Available tools
search_logos
Search for company logos by brand name or company name and return a list of matches with domains and logo URLs.
get_logo_url
Get a direct logo image URL for a specific domain with options for size, format (png, jpg, webp), theme (light or dark), and greyscale.