MCP Catalogs
Home

dottedsign-mcp vs memory

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

dottedsign-mcp
by DottedSign-Official
memory
by modelcontextprotocol
Stars★ 116★ 85,748
30d uses
Score4777
Official
Categories
ProductivityCommunicationDeveloper Tools
Knowledge GraphAI / LLM ToolsProductivity
LanguageTypeScript
Last commit1 mo agothis month

dottedsign-mcp · Summary

An MCP server enabling AI assistants to manage DottedSign document signing tasks and templates through natural language.

memory · Summary

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

dottedsign-mcp · Use cases

  • Automate document signing workflows through AI assistants
  • Track signing status of contracts without leaving the conversation
  • Create and send signing requests directly from AI chat interfaces

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

dottedsign-mcp · Install

Installation

Claude Desktop/claude.ai

  1. Click your account icon → **Settings**
  2. Select **Connectors** → **Add Connector**
  3. Paste the following URL:

`` https://mcp.dottedsign.com/dottedsign-api/mcp ``

  1. Claude will walk you through signing in to DottedSign to authorize access

Claude Code

Run the following command in your terminal:

claude mcp add --transport http dottedsign https://mcp.dottedsign.com/dottedsign-api/mcp

ChatGPT

  1. Go to [chatgpt.com](https://chatgpt.com), click your account icon → **Settings**
  2. Select **Connectors** → **Add Connector**
  3. Paste the following URL:

`` https://mcp.dottedsign.com/dottedsign-api/mcp ``

  1. Sign in to DottedSign to complete authorization

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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.