memory vs mastodon-mcp
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | mastodon-mcp by The-Focus-AI | |
|---|---|---|
| Stars | ★ 85,748 | ★ 9 |
| 30d uses | — | — |
| Score | 77 | 38 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | CommunicationMediaProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 7 mo ago |
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
mastodon-mcp · Summary
MCP server for Mastodon social media interaction with toot creation and media attachments.
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
mastodon-mcp · Use cases
- Automatically posting content to Mastodon from AI agents
- Scheduling social media content in advance for consistent posting
- Managing Mastodon presence with media attachments and alt text
- Integration with AI workflows to share updates or findings
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"]
}
}
}mastodon-mcp · Install
Installation
# Clone the repository
git clone [repository-url]
cd mastodon-mcp
# Install dependencies
pnpm install
# Build the project
pnpm build
# Configuration
export MSTODON_ACCESS_TOKEN="your_mastodon_api_token"
export MASTODON_INSTANCE_URL="https://your.instance.social" # Optional
# Start the server
pnpm startClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"mastodon": {
"command": "node",
"args": ["path/to/mastodon-mcp/dist/mcp-server.js"]
}
}
}