About
Phosphor Icons MCP provides access to the Phosphor Icons library, a comprehensive collection of over 1,400 customizable icons for UI design and development. Key features of Phosphor Icons MCP: - Six icon weights available: thin, light, regular, bold, fill, and duotone - Customizable appearance with any color (hex, RGB, named colors, or currentColor) and custom pixel sizes - Search and discovery tools to find icons by name, category, or tags - Batch retrieval for multiple icons simultaneously - Complete catalog browsing with metadata for all available icons - Framework-specific integration guidance for quick implementation
README
Phosphor Icons MCP Server
[](https://smithery.ai/server/@lasaths/phosphor-icons-mcp)
A Model Context Protocol (MCP) server that provides access to Phosphor Icons - a flexible icon family with 6 different weights and over 1,000+ icons.
> Important: This is a community-driven, AI-assisted MCP server and is not an official repository or affiliated with the Phosphor Icons project. This project was created with AI assistance and is maintained by the community. The original Phosphor Icons project can be found at https://github.com/phosphor-icons.
Features
Installation
npm install
Development
Run the development server:
npm run dev
This will start the server on port 8081 and open the Smithery playground for testing.
Configuration
The server supports an optional configuration parameter:
regularTools
get-icon
Retrieve one or more SVG icons from Phosphor Icons library. Provide either a single icon name or an array of names for batch retrieval.Parameters:
name (string, optional): Single icon name in kebab-case (e.g., 'arrow-left', 'user'). Use this for a single icon.names (array, optional): Array of icon names for batch retrieval. Use this for multiple icons.weight (optional): Icon weight/stylecolor (optional): Icon color - accepts hex (#FF0000), RGB (rgb(255,0,0)), named colors (red), or 'currentColor'size (optional): Icon size in pixels (sets both width and height)format (optional): Output format (svg or png). Default: svgsaveToFile (optional): Path to save the PNG file (single icon only)saveDir (optional): Directory to save PNG files (multiple icons only)Examples:
get-icon name="heart" weight="bold" color="#FF0000"
get-icon names=["star", "heart"] weight="fill" color="gold" size=48
get-icon name="user" color="currentColor"
search-icons
Search for icons by name, category, or tags.Parameters:
query (string): Search termlimit (optional): Maximum results to return (default: 10)Example:
search-icons query="arrow" limit=5
list-categories
Get a list of all available icon categories.Resources
phosphor://catalog
Complete catalog of popular Phosphor Icons with metadata including categories, tags, and available weights.phosphor://weights
Detailed information about the 6 available icon weights/styles and their best use cases.Prompts
implement-icon
Get guidance on implementing a Phosphor icon in your project.Parameters:
iconName (string): Name of the iconframework (string): Frontend framework (html, react, vue, svelte, angular)Publishing to Smithery
1. Push your code to GitHub 2. Visit smithery.ai/new 3. Connect your GitHub repository 4. Configure automatic deployments
Icon Weights
Examples
Get a red heart icon in bold:
// Returns SVG content for a bold red heart icon
get-icon({ name: "heart", weight: "bold", color: "#FF0000" })
Get a blue star icon at custom size:
// Returns a 48px blue filled star icon
get-icon({ name: "star", weight: "fill", color: "#3B82F6", size: 48 })
Search for navigation icons:
// Returns list of icons related to navigation
search-icons({ query: "navigation", limit: 10 })
Get multiple colored icons for a UI:
// Get home, user, and settings icons all in blue
get-icon({
names: ["home", "user", "gear"],
weight: "regular",
color: "#3B82F6",
size: 24
})
Disclaimer
NO WARRANTY OR LIABILITY
THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
Related MCP Servers
AI Research Assistant
hamid-vakilzadeh
AI Research Assistant provides comprehensive access to millions of academic papers through the Semantic Scholar and arXiv databases. This MCP server enables AI coding assistants to perform intelligent literature searches, citation network analysis, and paper content extraction without requiring an API key. Key features include: - Advanced paper search with multi-filter support by year ranges, citation thresholds, field of study, and publication type - Title matching with confidence scoring for finding specific papers - Batch operations supporting up to 500 papers per request - Citation analysis and network exploration for understanding research relationships - Full-text PDF extraction from arXiv and Wiley open-access content (Wiley TDM token required for institutional access) - Rate limits of 100 requests per 5 minutes with options to request higher limits through Semantic Scholar
Linkup
LinkupPlatform
Linkup is a real-time web search and content extraction service that enables AI assistants to search the web and retrieve information from trusted sources. It provides source-backed answers with citations, making it ideal for fact-checking, news gathering, and research tasks. Key features of Linkup: - Real-time web search using natural language queries to find current information, news, and data - Page fetching to extract and read content from any webpage URL - Search depth modes: Standard for direct-answer queries and Deep for complex research across multiple sources - Source-backed results with citations and context from relevant, trustworthy websites - JavaScript rendering support for accessing dynamic content on JavaScript-heavy pages
Math-MCP
EthanHenrickson
Math-MCP is a computation server that enables Large Language Models (LLMs) to perform accurate numerical calculations through the Model Context Protocol. It provides precise mathematical operations via a simple API to overcome LLM limitations in arithmetic and statistical reasoning. Key features of Math-MCP: - Basic arithmetic operations: addition, subtraction, multiplication, division, modulo, and bulk summation - Statistical analysis functions: mean, median, mode, minimum, and maximum calculations - Rounding utilities: floor, ceiling, and nearest integer rounding - Trigonometric functions: sine, cosine, tangent, and their inverses with degrees and radians conversion support