Unix Manual Server (MCP)
@tizee
关于 Unix Manual Server (MCP)
An MCP server that provides Unix command documentation directly within LLMs conversations.
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"mcp-unix-manual": {
"command": "uv",
"args": [
"run",
"mcp",
"install",
"unix_manual_server.py"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is Unix Manual Server (MCP)?
An MCP server that provides Unix command documentation directly within Claude conversations. It retrieves help pages, man pages, and usage information for Unix commands, lists available commands categorized by function, and checks if a specific command exists along with its version.
How to use Unix Manual Server (MCP)?
Install Python 3.13+, clone the repository, and run pip install -e . or uv install -e .. Then install the server in Claude Desktop with mcp install unix_manual_server.py. After installation, ask Claude for documentation (e.g., "I need help with the grep command"), list commands ("What Unix commands are available?"), or check existence ("Is the awk command available?").
Key features of Unix Manual Server (MCP)
- Retrieve man pages, help, and usage info for Unix commands
- List available commands on your system, categorized by function
- Verify if a specific command exists and get its version
- Validates command names against a regex pattern to prevent injection
- Executes commands directly without using a shell
- Sets timeouts on all command executions for safety
Use cases of Unix Manual Server (MCP)
- Quickly get the documentation for a specific Unix command without leaving a conversation
- Discover what commands are available on your system, grouped by category
- Check whether a command is installed and what version it is
- Learn about unfamiliar commands in a natural language chat interface
FAQ from Unix Manual Server (MCP)
What are the prerequisites for using Unix Manual Server (MCP)?
Python 3.13 or later and Claude Desktop (or any MCP‑compatible client) are required.
How does the server prevent command injection?
It validates command names against a regex pattern, executes commands directly without a shell, and sets timeouts on all executions. It only checks for documentation, never runs arbitrary commands.
Where does the documentation come from?
The server uses the local system’s man pages and command information — no external data sources are involved.
How do I install the server for development or testing?
Clone the repository, install the package (pip install -e . or uv install -e .), then use mcp dev unix_manual_server.py to test locally without installing in Claude Desktop.
Does the server produce any logs?
Yes, logs are saved to unix-manual-server.log in the same directory as the script, which is useful for debugging.
其他 分类下的更多 MCP 服务器
Blender
ahujasidOpen-source MCP to use Blender with any LLM
Inbox Zero AI MCP
elie222The world's best AI personal assistant for email. Open source app to help you reach inbox zero fast.
Awesome Mlops
visengerA curated list of references for MLOps
AutoBrowser MCP
autobrowser-aiBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
FastMCP v2 🚀
jlowin🚀 The fast, Pythonic way to build MCP servers and clients.
评论