visa-mcp vs memory
Side-by-side comparison to help you pick between these two MCP servers.
visa-mcp by byigitt | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 9 | ★ 85,748 |
| 30d uses | — | — |
| Score | 38 | 77 |
| Official | — | ✓ |
| Categories | ProductivityCommunicationOther | Knowledge GraphAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 11 mo ago | this month |
visa-mcp · Summary
MCP server for querying Schengen visa appointment status through multiple filter options.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
visa-mcp · Use cases
- Travel agents checking visa appointment availability for clients
- Individuals tracking Schengen visa application status
- Consular staff monitoring visa appointment system availability
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
visa-mcp · Install
Installation
**NPM (recommended)**
npx -y visa-mcp --stdio**Claude Desktop** Add to your claude_desktop_config.json:
{
"mcpServers": {
"visa-mcp": {
"command": "npx",
"args": ["-y", "visa-mcp", "--stdio"]
}
}
}**Cursor** Add to your ~/.cursor/mcp.json:
{
"mcpServers": {
"visa-mcp": {
"command": "npx",
"args": ["-y", "visa-mcp", "--stdio"]
}
}
}**VS Code** Add to your VS Code MCP configuration:
"mcp": {
"servers": {
"visa-mcp": {
"type": "stdio",
"command": "npx",
"args": ["-y", "visa-mcp", "--stdio"]
}
}
}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"]
}
}
}