PatternFly MCP Server
Provides tools for browsing, searching, and retrieving PatternFly React development rules and documentation, enabling AI agents to access comprehensive component guidelines, setup instructions, and best practices.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@PatternFly MCP ServerFetch the PatternFly button component documentation."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
PatternFly MCP Server
A Model Context Protocol (MCP) server that provides access to PatternFly React development rules and documentation, built with Node.js and TypeScript.
What is MCP?
The Model Context Protocol (MCP) is an open standard that enables AI assistants to securely access external data sources and tools. This server provides a standardized way to expose PatternFly documentation and development rules to MCP-compatible clients.
Features
TypeScript: Full type safety and modern JavaScript features
PatternFly Documentation Access: Browse, search, and retrieve PatternFly development rules
Comprehensive Rule Coverage: Access setup, guidelines, components, charts, chatbot, and troubleshooting documentation
Smart Search: Find specific rules and patterns across all documentation
Error Handling: Robust error handling with proper MCP error codes
Modern Node.js: Uses ES modules and the latest Node.js features
Prerequisites
Node.js 18.0.0 or higher
npm (or another Node package manager)
Installation
Local development
Install dependencies:
npm installBuild the project:
npm run buildRun in watch/dev mode (TypeScript via tsx):
npm run start:devUse via npx (after publishing)
npx @jephilli-patternfly-docs/mcpOr install locally in a project and run:
npm install @jephilli-patternfly-docs/mcp
npx @jephilli-patternfly-docs/mcpScripts
These are the most relevant NPM scripts from package.json:
build: Build the TypeScript project (cleans dist, type-checks, bundles)build:clean: Remove distbuild:watch: Build in watch modestart: Run the built server (node dist/index.js)start:dev: Run with tsx in watch mode (development)test: Run linting, type-check, and unit tests in src/test:dev: Jest watch mode for unit teststest:integration: Build and run integration tests in tests/test:integration-dev: Watch mode for integration teststest:lint: Run ESLint (code quality checks)test:lint-fix: Run ESLint with auto-fixtest:types: TypeScript type-check only (no emit)
Usage
The MCP server communicates over stdio and provides access to PatternFly documentation through the following tools. Both tools accept an argument named urlList which must be an array of strings. Each string is either:
An external URL (e.g., a raw GitHub URL to a .md file), or
A local file path (e.g., documentation/.../README.md). When running with the --docs-host flag, these paths are resolved under the llms-files directory instead.
Returned content format:
For each entry in urlList, the server loads its content, prefixes it with a header like:
# Documentation from <resolved-path-or-url>and joins multiple entries using a separator:\n\n---\n\n.If an entry fails to load, an inline error message is included for that entry.
Tool: usePatternFlyDocs
Use this to fetch high-level index content (for example, a local README.md that contains relevant links, or llms.txt files in docs-host mode). From that content, you can select specific URLs to pass to fetchDocs.
Parameters:
urlList: string[] (required)
Response (tools/call):
content[0].type = "text"
content[0].text = concatenated documentation content (one or more sources)
Tool: fetchDocs
Use this to fetch one or more specific documentation pages (e.g., concrete design guidelines or accessibility pages) after you’ve identified them via usePatternFlyDocs.
Parameters:
urlList: string[] (required)
Response (tools/call):
content[0].type = "text"
content[0].text = concatenated documentation content (one or more sources)
Docs-host mode (local llms.txt mode)
If you run the server with --docs-host, local paths you pass in urlList are resolved relative to the llms-files folder at the repository root. This is useful when you have pre-curated llms.txt files locally.
Example:
npx @jephilli-patternfly-docs/mcp --docs-hostThen, passing a local path such as react-core/6.0.0/llms.txt in urlList will load from llms-files/react-core/6.0.0/llms.txt.
MCP client configuration examples
Most MCP clients use a JSON configuration that tells the client how to start this server. The server itself does not read that JSON; it only reads CLI flags and environment variables. Below are examples you can adapt to your MCP client.
Minimal client config (npx)
{
"mcpServers": {
"patternfly-docs": {
"command": "npx",
"args": ["-y", "@jephilli-patternfly-docs/mcp@latest"],
"description": "PatternFly React development rules and documentation"
}
}
}Docs-host mode
{
"mcpServers": {
"patternfly-docs": {
"command": "npx",
"args": ["-y", "@jephilli-patternfly-docs/mcp@latest", "--docs-host"],
"description": "PatternFly docs (docs-host mode)"
}
}
}Local development (after build)
{
"mcpServers": {
"patternfly-docs": {
"command": "node",
"args": ["dist/index.js"],
"cwd": "/path/to/patternfly-mcp",
"description": "PatternFly docs (local build)"
}
}
}Inspector-CLI examples (tools/call)
Note: The parameter name is urlList and it must be a JSON array of strings.
usePatternFlyDocs (example with a local README):
npx @modelcontextprotocol/inspector-cli \
--config ./mcp-config.json \
--server patternfly-docs \
--cli \
--method tools/call \
--tool-name usePatternFlyDocs \
--tool-arg urlList='["documentation/guidelines/README.md"]'fetchDocs (example with external URLs):
npx @modelcontextprotocol/inspector-cli \
--config ./mcp-config.json \
--server patternfly-docs \
--cli \
--method tools/call \
--tool-name fetchDocs \
--tool-arg urlList='[
"https://raw.githubusercontent.com/patternfly/patternfly-org/refs/heads/main/packages/documentation-site/patternfly-docs/content/design-guidelines/components/about-modal/about-modal.md",
"https://raw.githubusercontent.com/patternfly/patternfly-org/refs/heads/main/packages/documentation-site/patternfly-docs/content/accessibility/components/about-modal/about-modal.md"
]'Environment variables
DOC_MCP_FETCH_TIMEOUT_MS: Milliseconds to wait before aborting an HTTP fetch (default: 15000)
DOC_MCP_CLEAR_COOLDOWN_MS: Default cooldown value used in internal cache configuration. The current public API does not expose a clearCache tool.
Programmatic usage (advanced)
The runServer function is exported via the package exports map. You can import it from the dedicated subpath or the package root.
Example (ESM):
// Prefer the public export subpath
import { runServer } from '@jephilli-patternfly-docs/mcp/server';
// Or from the package root (index.ts re-exports it)
import { runServer } from '@jephilli-patternfly-docs/mcp';
// Starts the MCP server and listens on stdio
await runServer();
// Server runs until interrupted (Ctrl+C)Returned content details
For each provided path or URL, the server returns a section:
Header:
# Documentation from <resolved-path-or-url>Body: the raw file content fetched from disk or network
Sections are concatenated with
\n\n---\n\n
This makes it easier to see where each chunk of content came from when multiple inputs are provided.
Publishing
To make this package available via npx, you need to publish it to npm:
Ensure you have an npm account and are logged in:
npm loginUpdate the version in package.json if needed:
npm version patch # or minor/majorPublish to npm:
npm publishAfter publishing, users can run your MCP server with:
npx @jephilli-patternfly-docs/mcpContributing
Fork the repository
Create a feature branch
Make your changes
Add tests if applicable
Submit a pull request
License
MIT License - see LICENSE file for details.
Resources
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jeff-phillips-18/patternfly-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server