MCP Catalogs
Home

memory vs ServiceGraph

Side-by-side comparison to help you pick between these two MCP servers.

memory
by modelcontextprotocol
ServiceGraph
by nostrband
Stars★ 85,748★ 160
30d uses
Score7748
Official
Categories
Knowledge GraphAI / LLM ToolsProductivity
SearchAI / LLM ToolsKnowledge Graph
LanguageTypeScriptShell
Last committhis monththis month

memory · Summary

An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.

ServiceGraph · Summary

An MCP server providing access to 100k+ US professional services firms with industry-specific search tools.

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

ServiceGraph · Use cases

  • Finding specialized service providers like law firms or marketing agencies in specific geographic regions
  • Enriching CRM data with professional firm contact information and services offered
  • Vetting potential service providers through ratings and third-party listing presence

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"]
    }
  }
}

ServiceGraph · Install

MCP Server Installation

For MCP-compatible clients like Claude Code:

claude mcp add --transport http servicegraph https://mcp.servicegraph.co

For Claude Desktop:

  1. Go to Settings → Connectors → Add custom connector
  2. Paste: https://mcp.servicegraph.co

For other JSON-config clients (e.g., Cursor):

{
  "mcpServers": {
    "servicegraph": {
      "url": "https://mcp.servicegraph.co"
    }
  }
}

Skills Installation (non-MCP)

npx skills add nostrband/servicegraph --skill find-service-providers
Comparison generated from public README + GitHub signals. Last updated automatically.