appicon
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@appiconresolve the icon for firefox"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
appicon
Resolve desktop and brand icons to local file paths — for Waybar, Rofi, scripts, and anything else that needs a real icon file.
appicon resolve firefox
appicon resolve --json --format png --size 24 "VS Code"
appicon resolve --json firefox discord
appicon resolve --offline some-cached-app
appicon resolve --explain missing-app
appicon prefetch firefox discord
appicon prefetch --from-desktop
appicon prefetch --json --offline firefox
appicon override set my-browser firefox
appicon override suggest my-browser
appicon override list
appicon sources get --json
appicon sources set --file ./sources.json
appicon status
appicon cache stats
appicon cache prune
appicon mcp # stdio MCP for agents
appicon daemon # optional user socket daemon
appicon completion bash # print completion script
appicon man | man -l - # view man pageResolve order (default): file → overrides → XDG / .desktop → SVGL. Fully reorderable via sources.json / --order — including opt-in simple-icons, dashboard-icons, github, glyph, and local packs. See docs/sources.md and docs/packs.md.
XDG, SVGL (cache-first), local packs, opt-in CDN/github/glyph stages, PNG rasterization, --offline, cache prune, MCP, optional socket daemon, and shell completions are implemented. Deferred ideas: docs/deferred.md.
Consumer contract: exit 0 / 1 (miss) / 2 (error); stable resolve --json fields (single object or {results:[…]} batch) — docs/consumer-contract.md, schemas docs/resolve-result.schema.json / docs/resolve-batch-result.schema.json. Misses are supported (callers keep glyphs). Treat appicon like optional peers such as zscroll / cava: never require the binary for a working bar.
PNG note: resolve --format png prefers resvg or rsvg-convert on PATH, otherwise a pure-Go oksvg fallback. Rasterized files are cached under $XDG_CACHE_HOME/appicon/raster/.
Theme note: --theme dark|light, APPICON_THEME, or GTK_THEME suffix (Adwaita:dark) prefer matching SVGL/CDN and XDG variants (name-dark / name-symbolic / name-light). Icon theme name is separate (APPICON_ICON_THEME).
Sources: $XDG_CONFIG_HOME/appicon/sources.json — every stage is an ordered entry. Default without a file is file → overrides → xdg → svgl. Opt-in remotes are never enabled by default.
appicon sources list
appicon sources get --json
appicon pack install simple-icons # local clone + register
appicon pack install --name mine --subdir icons https://github.com/org/my-icons.git
appicon resolve --order glyph,svgl,xdg my-app
appicon statusExample — remaps and a personal pack before path/XDG/SVGL:
{
"sources": [
{ "type": "overrides" },
{ "type": "pack", "name": "mine", "path": "~/.local/share/appicon/packs/mine" },
{ "type": "file" },
{ "type": "xdg" },
{ "type": "svgl" },
{ "type": "simple-icons" }
]
}CDN stages (simple-icons / dashboard-icons) are separate from local pack install clones of the same upstreams. Do not point http-index at third-party CDNs unless you control the allowlist and accept their terms.
Overrides
Long-tail query remaps live in $XDG_CONFIG_HOME/appicon/overrides.json:
appicon override set my-wm-class firefox
appicon override list --jsonRelated MCP server: RemixIcon MCP
MCP (agents)
Run the same binary as a stdio MCP server — tools call internal/resolve (no extra download logic):
appicon mcpTool | Mirrors |
|
|
|
|
|
|
|
|
|
|
| matching |
|
|
|
|
Example Cursor / Claude Desktop snippet:
{
"mcpServers": {
"appicon": {
"command": "appicon",
"args": ["mcp"]
}
}
}Agents should prefer MCP tools over shelling appicon when MCP is connected. Call resolve / sources_* / pack_* only — never invent CDN or SVGL URLs in other repos.
Daemon (optional)
Long-lived resolve over $XDG_RUNTIME_DIR/appicon.sock (mode 0600). Same allowlists/cache as the CLI, including order, explain, and batch. resolve / prefetch dial the socket when present and fall back in-process (--local / APPICON_NO_DAEMON=1 skips dial).
appicon daemon # foreground
# or user systemd — see contrib/systemd/README.md
systemctl --user enable --now appicon.socketHome Manager (Linux): programs.appicon.daemon.enable = true.
Shell completions
# bash
eval "$(appicon completion bash)"
# or install: appicon completion bash > ~/.local/share/bash-completion/completions/appicon
# zsh
appicon completion zsh > "${fpath[1]}/_appicon" # then: compinit
# fish
appicon completion fish > ~/.config/fish/completions/appicon.fishMan page
appicon man | man -l -
# or: appicon man > /usr/local/share/man/man1/appicon.1Install
ver=v0.2.0
arch=$(uname -m)
case "$arch" in
x86_64) arch=amd64 ;;
aarch64|arm64) arch=arm64 ;;
esac
curl -fsSL "https://github.com/bolens/appicon/releases/download/${ver}/appicon_${ver}_linux_${arch}.tar.gz" | tar -xz
install -m 755 appicon ~/.local/bin/appicon
appicon version # → v0.2.0Checksums: download SHA256SUMS (and optionally SHA256SUMS.sigstore.json) from the same release.
# checksums
sha256sum --check --ignore-missing SHA256SUMS
# optional cosign keyless verify (Sigstore)
cosign verify-blob \
--bundle SHA256SUMS.sigstore.json \
--certificate-identity-regexp '^https://github.com/bolens/appicon/\.github/workflows/release\.yml@refs/tags/v' \
--certificate-oidc-issuer 'https://token.actions.githubusercontent.com' \
SHA256SUMS
# optional GitHub build provenance attestation
gh attestation verify "appicon_${ver}_linux_${arch}.tar.gz" --repo bolens/appiconOr: bash scripts/ci/verify-release.sh /path/to/downloaded/assets.
See SECURITY.md for reporting vulnerabilities and the trust model.
waybar-config pins this via make install-appicon.
AUR (Arch)
Reference PKGBUILDs live under packaging/aur/:
Package | Tracks |
| Tagged source release |
| Prebuilt release tarball |
| Latest git commit on |
Fill checksums (except -git) and push to aur.archlinux.org when ready.
Nix
nix flake lock # once
nix run github:bolens/appicon -- version
nix build github:bolens/appicon#appicon-bin # linux prebuilt (like AUR appicon-bin)
nix build github:bolens/appicon#appicon-git # source + unstable version (like AUR appicon-git)
# local: see nix/README.md for vendorHash + appicon / appicon-bin / appicon-gitHome Manager: programs.appicon.enable = true via homeManagerModules.default (overlay or set package to appicon / appicon-bin / appicon-git). Optional programs.appicon.daemon.enable = true for the user socket daemon on Linux.
From source:
git clone https://github.com/bolens/appicon.git
cd appicon
make build
./bin/appicon versionCache
Remote assets live under $XDG_CACHE_HOME/appicon (default ~/.cache/appicon). XDG hits return theme paths directly and are not copied.
Optional query remaps: $XDG_CONFIG_HOME/appicon/overrides.json — manage with:
appicon override set steam_app_12345 "Some Game"
appicon override get steam_app_12345
appicon override list --json
appicon override rm steam_app_12345
appicon override pathBrand logos from SVGL are third-party marks — cached for personal use; this project does not redistribute a logo pack.
Examples
Shell-out-only consumers (no SVGL URLs):
bash examples/rofi-appicon.sh
bash examples/walker-appicon.sh firefox
bash examples/notify-appicon.sh firefox "Hello" "Icon from appicon"Development
make check-fast # go test + vet + gofmt
make check # + golangci-lint + govulncheck + gitleaks + actionlint + markdownlint + docs crosslinks
make buildDocumentation
Canonical map (update the listed source of truth when behavior changes): docs/README.md.
Topic | Doc |
Exit codes / | |
Stages / | |
Local packs / recipes | |
Not a backlog | |
Security / verify releases | |
Agents | |
Contributing | |
Changelog | |
Nix / AUR / systemd | nix/README.md, packaging/aur/README.md, contrib/systemd/README.md |
To cut a release locally (no push): bash scripts/ci/cut-release.sh v0.2.0.
License
MIT for code only. See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bolens/appicon'
If you have feedback or need assistance with the MCP directory API, please join our Discord server