New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

mcp-redhat-manpage

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mcp-redhat-manpage

MCP server providing version-indexed RHEL man pages for configuration verification

latest
Source
npmnpm
Version
0.2.3
Version published
Maintainers
1
Created
Source

mcp-redhat-manpage

An MCP server for RHEL man pages. Lets AI assistants look up configuration parameter defaults, syntax, and supported options from the actual man pages shipped with each RHEL major version.

Tools

ToolDescription
getManPageGet the full content of a man page for a specific RHEL version
searchManPagesSearch across all man pages for a keyword or regex pattern, with context lines
compareVersionsCompare a man page between two RHEL versions to detect parameter changes
listManPagesList available man pages, optionally filtered by name pattern

Prerequisites

  • Node.js 18+

Man pages for RHEL 8, 9, and 10 are included via the mcp-redhat-manpage-data dependency. No container runtime or manual extraction required.

Configuration

No authentication required. The server reads man pages bundled in the data package.

Gemini CLI

Add to ~/.gemini/settings.json:

{
  "mcpServers": {
    "redhat-manpage": {
      "command": "npx",
      "args": ["-y", "mcp-redhat-manpage"]
    }
  }
}

watsonx Orchestrate

orchestrate toolkits import --kind mcp \
  --name redhat-manpage \
  --description "RHEL Man Pages" \
  --command "npx -y mcp-redhat-manpage" \
  --tools "*"

Claude Code

Add to ~/.claude/settings.json:

{
  "mcpServers": {
    "redhat-manpage": {
      "command": "npx",
      "args": ["-y", "mcp-redhat-manpage"]
    }
  }
}

VS Code / Cursor

Add to .vscode/mcp.json in your workspace:

{
  "mcpServers": {
    "redhat-manpage": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "mcp-redhat-manpage"]
    }
  }
}

To override the bundled man pages with a custom directory, set the MANPAGES_DIR environment variable.

License

MIT

Keywords

mcp

FAQs

Package last updated on 05 May 2026

Related posts