gm-exec vs memory
Side-by-side comparison to help you pick between these two MCP servers.
gm-exec by AnEntrypoint | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 122 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsProductivityOther | Knowledge GraphAI / LLM ToolsProductivity |
| Language | JavaScript | TypeScript |
| Last commit | 1 mo ago | this month |
gm-exec · Summary
MCP server for executing code in multiple languages with background processing.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
gm-exec · Use cases
- Executing code snippets in various programming languages within MCP-enabled applications
- Running tests and build commands in isolated environments
- Background processing of long-running computational tasks
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
gm-exec · Install
Installation
Install globally:
bun install -g gm-exec
gm-exec --mcpAdd to your MCP client config:
{
"mcpServers": {
"gm-exec": {
"command": "bunx",
"args": ["gm-exec", "--mcp"]
}
}
}Requirements:
- Bun ≥ 1.0
Install Bun:
curl -fsSL https://bun.sh/install | bashmemory · 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"]
}
}
}