nav2_mcp_server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
nav2_mcp_server by ajtudela | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 73 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsOps & InfraOther | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 3 mo ago | this month |
nav2_mcp_server · Summary
An MCP server for controlling and monitoring ROS 2 Nav2 robots through navigation commands and system management.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
nav2_mcp_server · Use cases
- Autonomous warehouse robots for material transport
- Service robots in public spaces for navigation tasks
- ROS 2 robotics development and testing environments
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
nav2_mcp_server · Install
Installation
Dependencies
- ROS 2 (Jazzy)
- fastmcp
- Python
- uv (optional package manager)
Install with uv
git clone https://github.com/ajtudela/nav2_mcp_server.git
cd nav2_mcp_server
export ROS_DOMAIN_ID=0
uv syncConfiguration for Claude Desktop
{
"nav2 mcp server": {
"type": "stdio",
"command": "uv",
"args": [
"run",
"--directory",
"/path/to/nav2_mcp_server",
"nav2-mcp-server"
],
"env": {
"ROS_DOMAIN_ID": "0",
"ROS_LOCALHOST_ONLY": "1"
}
}
}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.