openweathermap-mcp-server vs memory
Side-by-side comparison to help you pick between these two MCP servers.
openweathermap-mcp-server by abhayymishraa | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 24 | 77 |
| Official | — | ✓ |
| Categories | weatherapi-integrationProductivity | Knowledge GraphAI / LLM 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.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
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
memory · Use cases
- Personalizing AI assistant interactions by remembering user preferences, history, and relationships
- Building context-aware chat applications that maintain conversation history
- Creating knowledge bases that persist across AI model sessions
openweathermap-mcp-server · Install
bun installbun run index.tsClaude Desktop configuration:
{
"mcpServers": {
"openweathermap": {
"command": "bun",
"args": ["run", "/path/to/openweathermap-mcp-server/index.ts"]
}
}
}memory · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
Use one-click installation buttons or manually configure in .vscode/mcp.json:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}