memory vs phonepi-mcp
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | phonepi-mcp by priyankark | |
|---|---|---|
| Stars | ★ 85,748 | ★ 34 |
| 30d uses | — | — |
| Score | 77 | 35 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | CommunicationProductivityDeveloper Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 13 mo ago |
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
phonepi-mcp · Summary
PhonePi MCP provides 23+ tools to control your smartphone remotely from AI assistants.
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
phonepi-mcp · Use cases
- Managing SMS and contacts through natural language commands in Claude Desktop or Cursor
- Automating phone tasks using AI workflows and tool calling
- Monitoring phone status and controlling settings remotely
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"]
}
}
}phonepi-mcp · Install
Installation
- Clone the repository
git clone https://github.com/priyankark/phonepi-mcp.git
cd phonepi-mcp- Install dependencies
npm install- Set up the mobile app (see phonepimcp.com for detailed instructions)
- Configure Claude Desktop:
Add to your claude_desktop_config.json:
{
"mcpServers": {
"phonepi": {
"command": "node",
"args": ["path/to/server.js"],
"env": {}
}
}
}- Start the server
npm start