favicon-finder

favicon-finder

3.5

Favicon Finder is a server designed to retrieve the favicon of any website efficiently.

Favicon Finder is a powerful and efficient server designed to help you easily retrieve the favicon of any website. Favicons are the small icons displayed in browser tabs and bookmarks, providing a visual representation of the website. With Favicon Finder, you can obtain the favicon URL quickly and seamlessly, enhancing your application's functionality and user experience.

Features

  • Easy Favicon Retrieval: Simply input the URL of the web page, and Favicon Finder will return the favicon URL for that site.
  • Optional Fallback URL: If no favicon is found, you can specify an optional fallback URL to ensure you always have an icon to display.
  • High Performance: With a service level of 99% and low latency, you can rely on Favicon Finder for fast and dependable results.

MCP Tools

  • Favicon URL Tool: Fetches the favicon URL of any given web page.

Usage with Different Platforms

python

python
import requests

url = 'http://example.com'
fallback_url = 'http://example.com/default-favicon.ico'

response = requests.get(f'http://faviconfinder.com/api?url={url}&fallback={fallback_url}')

if response.status_code == 200:
    favicon_url = response.json().get('favicon_url')
    print(f'Favicon URL: {favicon_url}')
else:
    print('Failed to retrieve favicon')