Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"fluentui-mcp-server": {
"args": [
"-y",
"fluentui-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A comprehensive Model Context Protocol (MCP) server that provides intelligent assistance for Fluent UI React component development. This server acts as your AI-powered companion for creating, validating, and maintaining Fluent UI applications following v9 design system patterns.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'fluentui-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked fluentui-mcp-server against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Pi Coding Agent extension (CLI-first) — routes bash/read/grep/find/ls through lean-ctx CLI for strong token savings. Optional MCP bridge can register advanced tools.
97% token reduction for AI coding sessions — zero deps, 21 languages, MCP server
App framework, testing framework, and inspector for MCP Apps.
MCP proxy that compresses prose fields (tool descriptions, etc.) using caveman rules. Same accuracy, fewer context tokens.
MCP Security Weekly
Get CVE alerts and security updates for Fluentui Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A comprehensive Model Context Protocol (MCP) server that provides intelligent assistance for Fluent UI React component development. This server acts as your AI-powered companion for creating, validating, and maintaining Fluent UI applications following v9 design system patterns.
What is MCP? The Model Context Protocol enables AI assistants to securely access external data sources and tools. This server extends AI capabilities with deep Fluent UI knowledge.
makeStyles and design tokensnpx fluentui-mcp-server
# Clone or download the server
cd fluentui-mcp-server
# Install dependencies
npm install
# Build the server
npm run build
# Test the server
npm run test
# Start the MCP server
npm start
# Or run in development mode with hot reload
npm run dev
The published CLI executable points directly to dist/server.js.
The server provides 12 powerful tools organized into 4 categories:
get_component_infoGet comprehensive information about any Fluent UI component.
{
"name": "get_component_info",
"arguments": {
"componentName": "Button"
}
}
Returns: Complete component documentation including description, props, slots, examples, and accessibility guidelines.
search_componentsFind components based on functionality, category, or keywords.
{
"name": "search_components",
"arguments": {
"query": "form input",
"category": "inputs",
"limit": 5
}
}
get_component_propsGet detailed property information for a specific component.
{
"name": "get_component_props",
"arguments": {
"componentName": "Avatar",
"propName": "size"
}
}
get_component_examplesRetrieve usage examples for components.
{
"name": "get_component_examples",
"arguments": {
"componentName": "Card",
"exampleType": "advanced"
}
}
get_design_tokensAccess design tokens by category with usage guidance.
{
"name": "get_design_tokens",
"arguments": {
"category": "colors",
"includeUsage": true
}
}
Categories: colors, typography, spacing, shadows, borders, motion