Model Context Protocol (MCP) server providing AI assistants with intelligent, context-efficient access to Microsoft FluentUI documentation.
Build production-grade React UIs with FluentUI — powered by AI that actually knows the component library.
This is an MCP server that gives AI assistants (Claude, Cline, Cursor, etc.) deep knowledge of the Microsoft FluentUI component library. Instead of the AI guessing at component APIs or hallucinating props, it queries real documentation through specialized tools.
AI assistants often:
- ❌ Hallucinate FluentUI component props that don't exist
- ❌ Use outdated v8 patterns when you need v9
- ❌ Load entire documentation sets, wasting context window
- ❌ Miss best practices, accessibility requirements, and patterns
This MCP server provides 12 specialized tools that give AI assistants:
- ✅ Accurate, up-to-date component documentation
- ✅ Smart search across 100+ documentation pages
- ✅ Props references, code examples, and patterns on demand
- ✅ Component suggestions based on UI descriptions
- ✅ Implementation guides combining docs + patterns + examples
- ✅ ~90% context window reduction vs loading all docs
npm install -g fluentui-mcpAdd to your Cline MCP settings:
{
"mcpServers": {
"fluentui-docs": {
"command": "fluentui-mcp"
}
}
}Settings file location:
- macOS:
~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json - Windows:
%APPDATA%\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json
Add to claude_desktop_config.json:
{
"mcpServers": {
"fluentui-docs": {
"command": "fluentui-mcp"
}
}
}Restart your AI assistant and you'll have access to all FluentUI documentation tools.
The server supports multiple FluentUI versions. Pass the version as an argument:
{
"mcpServers": {
"fluentui-v9": {
"command": "fluentui-mcp",
"args": ["v9"]
}
}
}You can even run multiple versions simultaneously:
{
"mcpServers": {
"fluentui-v9": {
"command": "fluentui-mcp",
"args": ["v9"]
},
"fluentui-v10": {
"command": "fluentui-mcp",
"args": ["v10"]
}
}
}Point to your own documentation folder:
{
"mcpServers": {
"fluentui-docs": {
"command": "fluentui-mcp",
"env": {
"FLUENTUI_DOCS_PATH": "/path/to/your/docs"
}
}
}
}| Tool | Description |
|---|---|
query_component |
Get complete documentation for a specific component. Supports fuzzy name matching. |
search_docs |
Search across ALL documentation (components, patterns, enterprise). Returns ranked results. |
list_by_category |
List all components in a category (buttons, forms, navigation, etc.). |
get_foundation |
Get setup, theming, styling, and architecture documentation. |
get_pattern |
Get UI pattern documentation (forms, layout, navigation, modals, state management). |
get_enterprise |
Get enterprise-grade patterns (dashboards, admin UIs, data-heavy apps, accessibility). |
| Tool | Description |
|---|---|
suggest_components |
Given a UI description, suggests which FluentUI components to use and why. |
get_implementation_guide |
Combines relevant docs + patterns + examples into a step-by-step implementation guide. |
get_component_examples |
Extracts only code examples from a component's docs (minimal context usage). |
get_props_reference |
Extracts only the props table from a component's docs (quick lookup). |
| Tool | Description |
|---|---|
list_all_docs |
Lists all available documentation with descriptions. |
reindex |
Re-scans the documentation folder and rebuilds the search index. |
┌──────────────────────────────────────────────────┐
│ MCP Server (stdio) │
│ Receives tool calls from AI assistants │
├──────────────────────────────────────────────────┤
│ 12 Specialized Tools │
│ query │ search │ suggest │ guide │ ... │
├──────────────────────────────────────────────────┤
│ In-Memory Document Store │
│ ┌───────────┐ ┌────────────┐ ┌──────────┐ │
│ │ Documents │ │ Categories │ │ Search │ │
│ │ Map │ │ Index │ │ Index │ │
│ └───────────┘ └────────────┘ └──────────┘ │
├──────────────────────────────────────────────────┤
│ Scanner │ Metadata Extractor │ Search Engine │
├──────────────────────────────────────────────────┤
│ Bundled Documentation (Markdown) │
│ Foundation │ Components │ Patterns │ Enterprise │
└──────────────────────────────────────────────────┘
- Startup: Server scans the docs folder recursively (< 1 second)
- Index: Builds in-memory search index with TF-IDF scoring
- Serve: All tool calls served from memory (instant, no disk I/O)
- Reindex: The
reindextool can refresh the index on demand
| Module | Content | Files |
|---|---|---|
| Foundation | Setup, theming, styling, architecture, accessibility | 7 |
| Components | 47+ component docs with props, examples, best practices | 50+ |
| Patterns | Form patterns, layout patterns, navigation, modals, state management | 30+ |
| Enterprise | App shells, dashboards, admin UIs, data-heavy apps, WCAG compliance | 15+ |
User: "Create a login form with email and password"
AI uses tools:
1. suggest_components({ uiDescription: "login form with email and password" })
→ Suggests: Input, Field, Button, Card
2. get_implementation_guide({ goal: "login form" })
→ Returns combined docs + form patterns + code examples
3. AI implements the form with accurate props and patterns
User: "Create a sortable data table with selection"
AI uses tools:
1. search_docs({ query: "table sorting selection" })
→ Finds: Table, DataGrid, sorting patterns
2. query_component({ componentName: "DataGrid" })
→ Full DataGrid documentation
3. get_component_examples({ componentName: "DataGrid" })
→ Just the code examples for reference
4. AI implements with correct DataGrid API
git clone https://github.com/blendsdk/fluentui-mcp.git
cd fluentui-mcp
yarn installyarn build # Compile TypeScript
yarn watch # Watch modeyarn test # Run tests
yarn test:watch # Watch mode
yarn test:coverage # Coverage reportfluentui-mcp/
├── src/
│ ├── index.ts # MCP server entry point
│ ├── config.ts # Configuration resolver
│ ├── types/
│ │ └── index.ts # TypeScript type definitions
│ ├── indexer/
│ │ ├── scanner.ts # Recursive docs directory scanner
│ │ ├── metadata-extractor.ts # Markdown metadata extraction
│ │ ├── document-store.ts # In-memory document store
│ │ ├── search-engine.ts # TF-IDF search engine
│ │ └── index-builder.ts # Orchestrates indexing at startup
│ ├── tools/
│ │ ├── query-component.ts
│ │ ├── search-docs.ts
│ │ ├── list-by-category.ts
│ │ ├── get-foundation.ts
│ │ ├── get-pattern.ts
│ │ ├── get-enterprise.ts
│ │ ├── suggest-components.ts
│ │ ├── get-implementation-guide.ts
│ │ ├── get-component-examples.ts
│ │ ├── get-props-reference.ts
│ │ ├── list-all-docs.ts
│ │ └── reindex.ts
│ └── __tests__/
│ ├── indexer/
│ ├── tools/
│ └── e2e/
├── docs/
│ └── v9/ # Bundled FluentUI v9 documentation
│ ├── 00-overview.md
│ ├── 01-foundation/
│ ├── 02-components/
│ ├── 03-patterns/
│ └── 04-enterprise/
├── package.json
├── tsconfig.json
└── vitest.config.ts
| Source | Priority | Example |
|---|---|---|
| CLI argument | Highest | fluentui-mcp v9 |
FLUENTUI_VERSION env var |
Medium | FLUENTUI_VERSION=v9 |
FLUENTUI_DOCS_PATH env var |
Highest (overrides version) | FLUENTUI_DOCS_PATH=/my/docs |
| Default | Lowest | Bundled v9 docs |
To add documentation for a new FluentUI version:
- Create a new folder:
docs/v10/(or whatever version) - Follow the same folder structure as
docs/v9/:docs/v10/ ├── 00-overview.md ├── 01-foundation/ ├── 02-components/ ├── 03-patterns/ └── 04-enterprise/ - The server automatically discovers and indexes all markdown files
- Use
fluentui-mcp v10to serve the new version
- Verify installation:
which fluentui-mcp - Test manually:
fluentui-mcp(should output to stderr: "FluentUI MCP Server running on stdio") - Check MCP settings JSON syntax
- Restart VS Code / AI assistant
- "Documentation path not found": Check version exists in
docs/folder - "Component not found": Try
search_docswith broader terms - Search returning no results: Try
reindexto rebuild the search index
- First query: < 100ms (served from memory after startup indexing)
- Search queries: < 50ms (pre-built TF-IDF index)
- Startup indexing: < 1 second for ~100 markdown files
Contributions welcome! Especially:
- Documentation for new FluentUI versions
- Additional tools and intelligence features
- Search engine improvements
- Bug reports and fixes
MIT — see LICENSE for details.
- FluentUI React Components — Official documentation
- Model Context Protocol — MCP specification
- Cline — VS Code AI assistant