dottedsign-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
dottedsign-mcp by DottedSign-Official | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 116 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | ProductivityCommunicationDeveloper Tools | File SystemDeveloper 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.