PluginBench
MCP Server
Active
MIT

io.github.bitterdev/dropscan-mcp MCP Server

io.github.bitterdev/dropscan-mcp

What is the io.github.bitterdev/dropscan-mcp MCP server?

MCP server for the Dropscan postal mail scanning API: read scanned letters, act on mailings.

How to install io.github.bitterdev/dropscan-mcp

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • DROPSCAN_API_TOKEN
    required
    secret

    Personal access token for the Dropscan REST API

  • DROPSCAN_ALLOW_WRITES

    Set to 1 to unlock the write and action tools, which also require confirm=true on every call

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "dropscan-mcp": {
      "command": "uvx",
      "args": [
        "dropscan-mcp"
      ],
      "env": {
        "DROPSCAN_API_TOKEN": "<YOUR_DROPSCAN_API_TOKEN>",
        "DROPSCAN_ALLOW_WRITES": "<YOUR_DROPSCAN_ALLOW_WRITES>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "dropscan-mcp": {
      "command": "uvx",
      "args": [
        "dropscan-mcp"
      ],
      "env": {
        "DROPSCAN_API_TOKEN": "<YOUR_DROPSCAN_API_TOKEN>",
        "DROPSCAN_ALLOW_WRITES": "<YOUR_DROPSCAN_ALLOW_WRITES>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "dropscan-mcp": {
      "command": "uvx",
      "args": [
        "dropscan-mcp"
      ],
      "env": {
        "DROPSCAN_API_TOKEN": "<YOUR_DROPSCAN_API_TOKEN>",
        "DROPSCAN_ALLOW_WRITES": "<YOUR_DROPSCAN_ALLOW_WRITES>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "dropscan-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "dropscan-mcp"
      ],
      "env": {
        "DROPSCAN_API_TOKEN": "<YOUR_DROPSCAN_API_TOKEN>",
        "DROPSCAN_ALLOW_WRITES": "<YOUR_DROPSCAN_ALLOW_WRITES>"
      }
    }
  }
}
Claude Code
claude mcp add dropscan-mcp --env DROPSCAN_API_TOKEN=<YOUR_DROPSCAN_API_TOKEN> --env DROPSCAN_ALLOW_WRITES=<YOUR_DROPSCAN_ALLOW_WRITES> -- uvx dropscan-mcp

Related MCP servers

MCP server for Enpass vaults: entries, passwords and TOTP/2FA codes, keychain-backed.

1
JavaScript
MIT
View repository →

MCP server to mount and unmount VeraCrypt containers with secure stdin password handling.

1
Python
MIT
View repository →

Renders letters as print ready PDFs, DIN 5008 compliant for German window envelopes.

0
TypeScript
MIT
View repository →

Send physical letters and faxes through the PixelLetter interface, test mode included.

0
TypeScript
MIT
View repository →

MCP server for the Simple Support System helpdesk API: read, answer and move tickets.

0
TypeScript
MIT
View repository →