MCP server for for searching and retrieving man pages from the local machine.
{
"mcpServers": {
"man-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for for searching and retrieving man pages from the local machine.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 198 days ago. 12 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Man 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 Model Context Protocol (MCP) server that provides access to Linux man pages using FastMCP. This server allows AI assistants to search, retrieve, and explore system documentation directly from your local machine.
This server is packaged as an MCPB (MCP Bundle) for easy integration with GitHub Copilot in VS Code.
aproposman:// URIsman, apropos (usually pre-installed on Linux)The easiest way to use this server is with the MCPB bundle, which is supported by Claude Desktop:
# Clone the repository
git clone https://github.com/guyru/man-mcp.git
cd man-mcp
# Build the MCPB bundle
make build
# This creates dist/man-mcp-{version}.mcpb
dist/man-mcp-{version}.mcpb bundle file# Clone the repository
git clone https://github.com/guyru/man-mcp.git
cd man-mcp
# Install dependencies
uv sync
# Install with development tools
uv sync --extra dev
# Clone the repository
git clone https://github.com/guyru/man-mcp.git
cd man-mcp
# Install the package and dependencies from pyproject.toml
pip install .
# Or install in development mode (editable install)
pip install -e .
# For development with optional dependencies
pip install -e .[dev]
# Using uv
uv run python3 server/main.py
# Using python directly
python3 server/main.py
# With MCP development tools
uv run mcp dev server/main.py
# Build the bundle
make build
# Test the bundle
make test
# View bundle information
make info
This MCP server can be integrated with VS Code using the GitHub Copilot extension. Since GitHub Copilot does not yet support MCPB bundles, direct configuration is required for VS Code.
Create a .vscode/mcp.json file in your workspace with the following configuration:
{
"servers": {
"man-mcp-server": {
"type": "stdio",
"command": "uv",
"args": [
"run",
"--directory",
"/path/to/man-mcp",
"server/main.py"
]
}
}
}
If you prefer not to use uv, you can configure it with python directly:
{
"servers": {
"man-mcp-server": {
"type": "stdio",
"command": "python3",
"args": ["/path/to/man-mcp/server/main.py"],
"env": {
"PYTHONPATH": "/path/to/man-mcp/server/lib"
}
}
}
}
MCP bundles are supported by Claude Desktop and can be installed directly. For other MCP clients like GitHub Copilot, use the manual configuration above.
Note: Replace /path/to/man-mcp with the actual path to your project directory.
Once configured, you can interact with the man pages server through GitHub Copilot in VS Code by asking questions about Linux commands and system documentation.
Search for man pages by keyword or topic:
search_man_pages("permission") # Find pag
... [View full README on GitHub](https://github.com/guyru/man-mcp-server#readme)