Look up company logos and brand data via the logo.dev API.
Look up company logos and brand data via the logo.dev API.
Valid MCP server (0 strong, 2 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry. Trust signals: trusted author (3/3 approved).
12 files analyzed · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: FASTMCP_LOG_LEVEL
Environment variable: LOGODEV_MCP_SERVER_NAME
Environment variable: LOGODEV_MCP_BEARER_TOKEN
Environment variable: LOGODEV_MCP_AUTH_MODE
Environment variable: LOGODEV_MCP_BASE_URL
Environment variable: LOGODEV_MCP_OIDC_CONFIG_URL
Environment variable: LOGODEV_MCP_OIDC_CLIENT_ID
Environment variable: LOGODEV_MCP_OIDC_CLIENT_SECRET
Environment variable: LOGODEV_MCP_OIDC_JWT_SIGNING_KEY
Environment variable: LOGODEV_MCP_OIDC_AUDIENCE
Environment variable: LOGODEV_MCP_OIDC_REQUIRED_SCOPES
Environment variable: LOGODEV_MCP_KV_STORE_URL
Environment variable: PUID
Environment variable: PGID
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-pvliesdonk-logodev-mcp": {
"env": {
"PGID": "your-pgid-here",
"PUID": "your-puid-here",
"FASTMCP_LOG_LEVEL": "your-fastmcp-log-level-here",
"LOGODEV_MCP_BASE_URL": "your-logodev-mcp-base-url-here",
"LOGODEV_MCP_AUTH_MODE": "your-logodev-mcp-auth-mode-here",
"LOGODEV_MCP_SERVER_NAME": "your-logodev-mcp-server-name-here",
"LOGODEV_MCP_BEARER_TOKEN": "your-logodev-mcp-bearer-token-here",
"LOGODEV_MCP_KV_STORE_URL": "your-logodev-mcp-kv-store-url-here",
"LOGODEV_MCP_OIDC_AUDIENCE": "your-logodev-mcp-oidc-audience-here",
"LOGODEV_MCP_OIDC_CLIENT_ID": "your-logodev-mcp-oidc-client-id-here",
"LOGODEV_MCP_OIDC_CONFIG_URL": "your-logodev-mcp-oidc-config-url-here",
"LOGODEV_MCP_OIDC_CLIENT_SECRET": "your-logodev-mcp-oidc-client-secret-here",
"LOGODEV_MCP_OIDC_JWT_SIGNING_KEY": "your-logodev-mcp-oidc-jwt-signing-key-here",
"LOGODEV_MCP_OIDC_REQUIRED_SCOPES": "your-logodev-mcp-oidc-required-scopes-here"
},
"args": [
"logodev-mcp"
],
"command": "uvx"
}
}
}From the project's GitHub README.
Look up company logos and brand data via the logo.dev API.
Documentation | Config wizard | PyPI | Docker
get_logo) — fetch a company logo as an image plus URL by domain, ticker, ISIN, crypto symbol, or brand name; supports size, format, theme, greyscale, retina, and fallback options. Requires a publishable key (pk_…).search_brands) — resolve a brand or company name to candidate domains and logo URLs via typeahead or exact-match. Requires a secret key (sk_…).describe_company) — return structured company data (name, description, brand colours, social links) for a domain. Requires a secret key (sk_…).get_brand) — return the complete brand profile (logo, brandmark, banners, colours, description) for a domain — a richer superset of describe_company. Requires a secret key (sk_…).With this server mounted in an MCP client (Claude, etc.), you can:
get_logo (publishable key required).search_brands (secret key required).describe_company (secret key required).get_brand (secret key required).get_logo with identifier_type=ticker (publishable key required).pip install logodev-mcp
If you add optional extras via the PROJECT-EXTRAS-START / PROJECT-EXTRAS-END sentinels in pyproject.toml, document them below:
git clone https://github.com/pvliesdonk/logodev-mcp.git
cd logodev-mcp
uv sync --all-extras --all-groups
docker pull ghcr.io/pvliesdonk/logodev-mcp:latest
A compose.yml ships at the repo root as a starting point — copy .env.example to .env, edit, and docker compose up -d.
To attach a remote Python debugger (development only — the protocol is unauthenticated), see Remote debugging.
Download .deb or .rpm packages from the GitHub Releases page. Both install a hardened systemd unit; env configuration is sourced from /etc/logodev-mcp/env (copy from the shipped /etc/logodev-mcp/env.example).
Download the .mcpb bundle from the GitHub Releases page and double-click to install, or run:
mcpb install logodev-mcp-<version>.mcpb
Claude Desktop prompts for required env vars via a GUI wizard — no manual JSON editing needed.
For manual Claude Desktop configuration and setup options, see Claude Desktop deployment.
logodev-mcp serve # stdio transport
logodev-mcp serve --transport http --port 8000 # streamable HTTP
For library usage (embedding the domain logic without the MCP transport), import from the logodev_mcp package directly — see the project's domain modules under src/logodev_mcp/ for entry points.
The server registers a built-in get_server_info tool (via fastmcp_pvl_core.register_server_info_tool) so operators can confirm the deployed version with a single MCP call. The default response carries server_name, server_version, and core_version. Servers that talk to a remote upstream wire upstream version reporting inside the DOMAIN-UPSTREAM-START / DOMAIN-UPSTREAM-END sentinel in src/logodev_mcp/server.py — see CLAUDE.md for the wiring pattern.
Core environment variables shared across all fastmcp-pvl-core-based services:
| Variable | Default | Description |
|---|---|---|
FASTMCP_LOG_LEVEL | INFO | Log level for FastMCP internals and app loggers (DEBUG / INFO / WARNING / ERROR). The -v CLI flag overrides to DEBUG. |
FASTMCP_ENABLE_RICH_LOGGING | true | Set to false for plain / structured JSON log output. |
LOGODEV_MCP_KV_STORE_URL | file:///data/state | Persistent-state backend URL for pvl-core subsystems — file:///path (survives restarts), memory:// (dev/ephemeral). |
Domain-specific variables go below under Domain configuration.
Callers authenticate via a bearer token or OIDC (mutually exclusive). See the Authentication guide for setup, mapped multi-subject tokens, OIDC, and troubleshooting.
After copier copy and gh repo create --push:
CLAUDE.md.uv sync --all-extras --all-groups.uv run pre-commit install.uv run pytest -x -q && uv run ruff check --fix . && uv run ruff format . && uv run mypy src/ tests/.CI workflows reference three repository secrets. Configure them via Settings → Secrets and variables → Actions or with gh secret set:
| Secret | Used by | How to generate |
|---|---|---|
RELEASE_TOKEN | release.yml, copier-update.yml | Fine-grained PAT at https://github.com/settings/personal-access-tokens/new with contents: write and pull_requests: write (the copier-update cron opens PRs). Scoped to this repo. |
CODECOV_TOKEN | ci.yml | https://codecov.io — sign in with GitHub, add the repo, copy the upload token from the repo settings page. |
CLAUDE_CODE_OAUTH_TOKEN | claude.yml, claude-code-review.yml | Run claude setup-token locally and paste the result. |
gh secret set RELEASE_TOKEN
gh secret set CODECOV_TOKEN
gh secret set CLAUDE_CODE_OAUTH_TOKEN
GITHUB_TOKEN is auto-provided — no action needed.
The PR gate (matches CI):
uv run pytest -x -q # tests
uv run ruff check --fix . && uv run ruff format . # lint + format
uv run mypy src/ tests/ # type-check
Pre-commit runs a subset of the gate on each commit; see .pre-commit-config.yaml for details, or CLAUDE.md for the full Hard PR Acceptance Gates.
uv sync creates .venv/bin/* scripts with absolute shebangs pointing at the venv Python. If you move the repo after scaffolding (mv /old/path /new/path), uv run pytest fails with ModuleNotFoundError: No module named 'fastmcp' because the stale shebang resolves to a different interpreter than the venv's site-packages.
Fix:
rm -rf .venv
uv sync --all-extras --all-groups
uv run python -m pytest also works as a one-shot workaround (bypasses the stale entry-script shim).
uv.lock refresh after copier updateWhen copier update introduces new dependencies (e.g. a new extra added to pyproject.toml.jinja), CI runs uv sync --frozen which fails against a stale lockfile. Run uv lock locally and commit the refreshed uv.lock alongside accepting the copier-update PR.
Domain environment variables use the LOGODEV_MCP_ prefix:
| Variable | Default | Required | Description |
|---|---|---|---|
LOGODEV_MCP_PUBLISHABLE_KEY | — | Conditional | logo.dev publishable key (pk_…). Enables the get_logo tool. Omit to hide that tool. |
LOGODEV_MCP_SECRET_KEY | — | Conditional | logo.dev secret key (sk_…). Enables search_brands, describe_company, and get_brand. Omit to hide those tools. |
LOGODEV_MCP_DETECT_PLAN | true | No | Probe describe/brand entitlement on startup and hide the tools the plan does not allow. Set false to skip probing and register every secret-key tool. |
LOGODEV_MCP_STATE_DIR | /data/state | No | Directory for the cached plan-detection verdict (entitlements.json). |
At least one key must be set for any API tool to be registered. Both keys may be set simultaneously to enable all four tools.
LOGODEV_MCP_PUBLISHABLE_KEY controls get_logo; LOGODEV_MCP_SECRET_KEY controls search_brands, describe_company, and get_brand. Tools for a missing key are never registered, not merely guarded at call time.describe_company needs a paid plan and get_brand needs Pro/Enterprise. logo.dev has no plan endpoint, so on startup the server probes each on logo.dev and disables the tool on a 401/403. search_brands is never gated; any ambiguous probe result (timeout, 5xx, 404, 429) fails open and keeps the tool enabled. The verdict is cached under LOGODEV_MCP_STATE_DIR for 7 days (re-probed on key rotation). Disable with LOGODEV_MCP_DETECT_PLAN=false.src/logodev_mcp/domain.py contains the Service class and LogoDevError with no FastMCP imports; src/logodev_mcp/tools.py is the sole FastMCP layer.LogoDevError raised in domain code is caught in each tool wrapper and returned as a plain text message so the MCP client sees a readable error, not a server exception.get_logo returns both the CDN URL (text) and the image bytes (image content block) unless url_only=True, in which case only the URL string is returned.Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.