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 | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | ProductivityCommunicationDeveloper Tools | Knowledge GraphAI / LLM ToolsProductivity |
| Language | — | TypeScript |
| Last commit | 1 mo ago | this 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
- Click your account icon → **Settings**
- Select **Connectors** → **Add Connector**
- Paste the following URL:
`` https://mcp.dottedsign.com/dottedsign-api/mcp ``
- 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/mcpChatGPT
- Go to [chatgpt.com](https://chatgpt.com), click your account icon → **Settings**
- Select **Connectors** → **Add Connector**
- Paste the following URL:
`` https://mcp.dottedsign.com/dottedsign-api/mcp ``
- 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"]
}
}
}