{"id":38914268,"url":"https://github.com/patternfly/patternfly-mcp","last_synced_at":"2026-03-06T16:03:51.071Z","repository":{"id":320223871,"uuid":"1080703510","full_name":"patternfly/patternfly-mcp","owner":"patternfly","description":null,"archived":false,"fork":false,"pushed_at":"2026-03-03T20:38:57.000Z","size":585,"stargazers_count":3,"open_issues_count":13,"forks_count":7,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-03T22:29:20.728Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/patternfly.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-21T18:42:23.000Z","updated_at":"2026-03-03T20:39:01.000Z","dependencies_parsed_at":"2025-10-22T17:33:39.954Z","dependency_job_id":"1447f1cd-d18d-4a9e-970a-d20ff7c983d7","html_url":"https://github.com/patternfly/patternfly-mcp","commit_stats":null,"previous_names":["patternfly/patternfly-mcp"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/patternfly/patternfly-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patternfly%2Fpatternfly-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patternfly%2Fpatternfly-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patternfly%2Fpatternfly-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patternfly%2Fpatternfly-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/patternfly","download_url":"https://codeload.github.com/patternfly/patternfly-mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/patternfly%2Fpatternfly-mcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30180654,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T12:39:21.703Z","status":"ssl_error","status_checked_at":"2026-03-06T12:36:09.819Z","response_time":250,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-17T15:24:23.616Z","updated_at":"2026-03-06T16:03:51.058Z","avatar_url":"https://github.com/patternfly.png","language":"TypeScript","readme":"# PatternFly MCP Server\n\nA Model Context Protocol (MCP) server that provides access to PatternFly rules and documentation, built with Node.js.\n\nThe PatternFly MCP server is a comprehensive library resource for PatternFly.\nIt is intended to be extensible to meet the needs of different teams and projects, from simple to complex, from design to development. \n[Read more about our roadmap and how we've structured the server in our architecture docs](./docs/architecture.md).\n\n## Requirements\n- [Node.js 20+](https://nodejs.org/)\n- NPM (or equivalent package manager)\n\n## Quick Start\n\nThe PatternFly MCP Server supports multiple configurations; see the [usage documentation](./docs/usage.md#mcp-client-configuration) for details.\n\n### For integrated use with an IDE\n\n#### Set a basic MCP configuration\n\nMinimal configuration\n```json\n{\n  \"mcpServers\": {\n    \"patternfly-docs\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@patternfly/patternfly-mcp@latest\"],\n      \"description\": \"PatternFly rules and documentation\"\n    }\n  }\n}\n```\n\nHTTP transport mode\n```json\n{\n  \"mcpServers\": {\n    \"patternfly-docs\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@patternfly/patternfly-mcp@latest\", \"--http\", \"--port\", \"8080\"],\n      \"description\": \"PatternFly docs (HTTP transport)\"\n    }\n  }\n}\n```\n\n[See the MCP Server Configuration documentation for more examples.](./docs/usage.md#mcp-client-configuration)\n\n### For development, advanced usage\n\n#### Run the server directly\nRun the server immediately via `npx`:\n\n```bash\nnpx -y @patternfly/patternfly-mcp\n```\n\nOr with options\n\n```bash\nnpx -y @patternfly/patternfly-mcp --log-stderr --verbose\n```\n\n#### Inspect the server\nVisualize and test the MCP interface:\n\n```bash\nnpx -y @modelcontextprotocol/inspector npx @patternfly/patternfly-mcp\n```\n\n\n#### Embed the server in your application\n\n```typescript\nimport { start } from '@patternfly/patternfly-mcp';\n\n// Remember to avoid using console.log and info, they pollute STDOUT\nasync function main() {\n  const server = await start();\n\n  // Graceful shutdown\n  process.on('SIGINT', async () =\u003e {\n    await server.stop();\n    process.exit(0);\n  });\n}\n\nmain();\n```\n\n[See the development documentation for additional examples, CLI and embedded server options.](./docs/development.md)\n\n## Documentation\n\nFor comprehensive usage, development, and project state [read the docs](./docs/README.md).\n\n## Contributing\n\nContributing? Guidelines can be found here [CONTRIBUTING.md](./CONTRIBUTING.md).\n\n### AI agent\n\nIf you're using an AI assistant to help with development in this repository, please prompt it to `review the repo guidelines` to ensure adherence to project conventions.\n\nGuidelines for developer-agent interaction can be found in [CONTRIBUTING.md](./CONTRIBUTING.md#ai-agent).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatternfly%2Fpatternfly-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpatternfly%2Fpatternfly-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpatternfly%2Fpatternfly-mcp/lists"}