openweathermap-mcp-server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
openweathermap-mcp-server by abhayymishraa | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 24 | 77 |
| Official | — | ✓ |
| Categories | weatherapi-integrationProductivity | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 13 mo ago | this month |
openweathermap-mcp-server · Summary
MCP server providing weather data from OpenWeatherMap API with Bun runtime.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
openweathermap-mcp-server · Use cases
- Get current weather for any location using coordinates
- Retrieve 5-day weather forecasts for trip planning
- Integrate weather data into AI assistants for location-aware responses
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
openweathermap-mcp-server · Install
bun installbun run index.tsClaude Desktop configuration:
{
"mcpServers": {
"openweathermap": {
"command": "bun",
"args": ["run", "/path/to/openweathermap-mcp-server/index.ts"]
}
}
}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.