npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

favicon-mcp-server

v1.0.0

Published

MCP server for Favicon.so - fetch favicons and generate favicon assets

Readme

Favicon.so MCP Server

Model Context Protocol (MCP) server for Favicon.so - fetch favicons for any website and generate custom favicons.

Features

This MCP server provides the following tools:

| Tool | Description | |------|-------------| | get_favicon | Get the favicon for any domain. Returns favicon URL, format, and embed URLs for use in HTML. | | get_favicon_generator_url | Get the URL to the Favicon.so generator for creating custom favicons from text or SVG icons. | | search_favicons | Get the URL to search and browse favicons on Favicon.so. |

Installation

From npm (recommended)

npm install -g favicon-mcp-server
# or
pnpm add -g favicon-mcp-server

From source

git clone https://github.com/Go7hic/favicon-mcp-server.git
cd favicon-mcp-server
pnpm install
pnpm run build

Usage

With Claude Desktop

Using global install:

{
  "mcpServers": {
    "favicon-so": {
      "command": "favicon-mcp"
    }
  }
}

Or with npx (no global install):

{
  "mcpServers": {
    "favicon-so": {
      "command": "npx",
      "args": ["-y", "favicon-mcp-server"]
    }
  }
}

From source (replace path):

{
  "mcpServers": {
    "favicon-so": {
      "command": "node",
      "args": ["/ABSOLUTE/PATH/TO/favicon-mcp-server/build/index.js"]
    }
  }
}

With Cursor

Add to Cursor MCP config; if listed on MCP Registry, you can add by name. Otherwise use npx -y favicon-mcp-server as command.

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | FAVICON_API_BASE | https://favicon.so | Base URL for the Favicon.so API |

Tool Examples

get_favicon

Input:

{
  "domain": "github.com"
}

Output:

{
  "domain": "github.com",
  "faviconUrl": "https://github.githubassets.com/favicons/favicon.svg",
  "format": "image/svg+xml",
  "isDefault": false,
  "embedUrl": "https://favicon.so/api/favicon?url=github.com",
  "shortUrl": "https://favicon.so/en/github.com"
}

Use in HTML:

<img src="https://favicon.so/api/favicon?url=github.com" alt="GitHub favicon" />
<link rel="icon" href="https://favicon.so/api/favicon?url=github.com" />

get_favicon_generator_url

Input:

{
  "locale": "en"
}

Output:

{
  "url": "https://favicon.so/en/generator",
  "description": "Favicon Generator - Create custom favicons from text or SVG icons...",
  "features": [...]
}

Development

# Watch mode
pnpm run watch

# Build
pnpm run build

# Test locally
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | node build/index.js

License

MIT