React Icons MCP Server
anshuopinion
README
React Icons MCP Server
A Model Context Protocol (MCP) server for React Icons integration. This server enables AI coding tools like Cursor, Windsurf, Cline, and other AI-powered coding assistants to access and understand the React Icons library.
What is React Icons?
React Icons is a popular library that includes icons from multiple icon sets like Font Awesome, Material Design, Bootstrap, and many more. It allows easy integration of icons into React applications using ES6 imports.
What is MCP?
The Model Context Protocol is a standard for AI tools to request specific context from sources outside their main training data. This MCP server allows AI coding assistants to access information about React Icons to provide better coding assistance.
Features
- Get information about all icon libraries available in react-icons
- Search for icons by name across all libraries or within a specific library
- Retrieve all icons from a specific library
- Get detailed information about specific icons
- Get usage examples for icons in different React contexts
Getting Started
Installation
npm install -g react-icons-mcp
# or
npx react-icons-mcp
Configuration
To use this MCP server with your AI coding tools, you'll need to add it to your tool's MCP configuration. Here are examples for popular AI coding assistants:
MacOS / Linux
{
"mcpServers": {
"React Icons MCP": {
"command": "npx",
"args": ["-y", "react-icons-mcp", "--stdio"]
}
}
}
Windows
{
"mcpServers": {
"React Icons MCP": {
"command": "cmd",
"args": ["/c", "npx", "-y", "react-icons-mcp", "--stdio"]
}
}
}
Running Locally
You can also run the server directly:
# Run in HTTP mode (default port 3334)
npx react-icons-mcp
# Run in stdio mode for direct integration with AI tools
npx react-icons-mcp --stdio
# Run on a custom port
npx react-icons-mcp --port 3456
Tools Available
This MCP server exposes the following tools to AI coding assistants:
- get_icon_libraries - Get information about all available icon libraries
- search_icons - Search for icons by name or category
- get_library_icons - Get all icons from a specific library
- get_icon_details - Get detailed information about a specific icon
- get_icon_usage_examples - Get code examples for using React Icons
Example Usage
Here's how an AI tool might use this MCP server to help a developer:
- User asks: "I need a user icon for my React app"
- AI tool calls
search_iconswith query "user" - AI tool receives a list of user-related icons from various libraries
- AI tool suggests: "You can use the FaUser icon from Font Awesome with this code snippet:"
import { FaUser } from 'react-icons/fa';
function UserProfile() {
return (
<div>
<FaUser size={24} />
<span>User Profile</span>
</div>
);
}
Development
# Clone the repository
git clone https://github.com/yourusername/react-icons-mcp.git
cd react-icons-mcp
# Install dependencies
npm install
# Build the project
npm run build
# Run in development mode with hot reloading
npm run dev
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor
Linear MCP Server
A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.
Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.