rtfmbro-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
rtfmbro-mcp by marckrenn | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 87 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsKnowledge Graph | File SystemDeveloper ToolsProductivity |
| Language | — | TypeScript |
| Last commit | 11 mo ago | this month |
rtfmbro-mcp · Summary
rtfmbro provides always-up-to-date, version-specific package documentation as context for coding agents via MCP.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
rtfmbro-mcp · Use cases
- Fetching version-specific documentation for packages in lockfiles
- Providing accurate documentation for legacy projects using older package versions
- Integrating with AI coding agents to provide relevant documentation context
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
rtfmbro-mcp · Install
Installation
Quick Start
Claude Code
claude mcp add-json rtfmbro '{ "type": "http", "url": "https://rtfmbro.smolosoft.dev/mcp/" }'Claude Desktop / VS Code / etc.
Add the remote server to your MCP configuration:
{
"rtfmbro": {
"type": "http",
"url": "https://rtfmbro.smolosoft.dev/mcp/"
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.