dottedsign-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
dottedsign-mcp by DottedSign-Official | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 116 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | ProductivityCommunicationDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| 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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything