Skip to main content
Glama
nick-timms

DragApp MCP Server

by nick-timms

DragApp MCP Server

An MCP server for DragApp — AI-powered email & WhatsApp for teams. Read and reply to emails, send WhatsApp messages, search threads, manage boards, and more from Claude, ChatGPT, Cursor, or any MCP-compatible AI tool.

Setup

Fastest: connect from your AI client (hosted)

Add this URL as a custom connector:

https://app.dragapp.com/mcp
  • Claude — Settings → Connectors → Add custom connector → paste the URL

  • ChatGPT — Settings → Connectors → Add → paste the URL

  • Gemini — add it as a remote MCP server with the same URL

When you connect, a Drag page opens and asks for your API key once (DragApp → Settings → Integrations). The key is verified and handed to your client as its access token; the service stores nothing, and the connect flow never puts your key in a URL. Works in any client that supports remote MCP connectors (OAuth 2.1 + PKCE, dynamic client registration). Nothing to install.

Local (config-file clients: Cursor, Windsurf, Claude Code)

1. Get your API key

Go to DragApp → Settings → Integrations → copy your API key.

2. Connect to your AI tool

Claude Desktop — add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "dragapp": {
      "command": "npx",
      "args": ["-y", "@dragapp/mcp-server"],
      "env": {
        "DRAG_API_KEY": "your-api-key"
      }
    }
  }
}

Cursor — add to .cursor/mcp.json:

{
  "mcpServers": {
    "dragapp": {
      "command": "npx",
      "args": ["-y", "@dragapp/mcp-server"],
      "env": {
        "DRAG_API_KEY": "your-api-key"
      }
    }
  }
}

Works with any MCP-compatible client — ChatGPT, Windsurf, Claude Code, etc.

Related MCP server: Gmail MCP Server

What you can do

Ask your AI assistant:

  • "Show me unread emails on the Support board"

  • "Read the latest email from Acme Corp and draft a reply"

  • "Move all billing threads to the Done column"

  • "Search for emails mentioning 'invoice' on the Sales board"

  • "What's my team's average response time this week?"

  • "List all knowledge base articles"

  • "Create a task on the Support board assigned to Sarah"

Tools

Email (8 tools)

list_threads · get_thread · reply_to_thread · send_new_email · search_threads · filter_threads · move_thread · move_threads_bulk

Boards (5 tools)

list_boards · get_board · list_columns · list_board_members · list_teams

Cards (6 tools)

list_cards_in_column · get_card · create_card · update_card · move_card · archive_card

Labels (4 tools)

list_labels · add_label_to_thread · remove_label_from_thread · toggle_labels

Contacts (3 tools)

search_contacts · get_contact_conversations · create_contact

Knowledge Base (5 tools)

list_articles · get_article · create_article · update_article · search_knowledge

Analytics (4 tools)

get_response_times · get_avg_response_time · get_daily_activity · get_closed_activity

Automations (3 tools)

list_automations · toggle_automation · toggle_ai_drafts

WhatsApp (4 tools)

send_whatsapp_message · send_whatsapp_template · list_whatsapp_templates · get_whatsapp_conversation

Comments (2 tools)

add_comment · get_comment

Tags (2 tools)

list_tags · add_tag_to_card

Tasks (1 tool)

create_task

47 tools across 12 categories.

Development

git clone https://github.com/nick-timms/drag-mcp-server.git
cd drag-mcp-server
npm install
cp .env.example .env  # add your API key
npm run build
npm start

Secret-scanning pre-commit hook

This is a public repository. Before committing, install the pre-commit hook so gitleaks scans your staged changes for secrets (keys, JWTs, tokens):

pip install pre-commit   # one-time, if you don't have it
pre-commit install       # installs the git hook in this repo

Run it manually against everything at any time:

pre-commit run --all-files

The hook uses .gitleaks.toml. The same scan runs in CI on every push and pull request (.github/workflows/secret-scan.yml), and npm publish runs a tarball guard (scripts/check-tarball.mjs) that blocks the release if the built package contains any known-sensitive term.

License

MIT

Install Server
A
license - permissive license
B
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    B
    quality
    F
    maintenance
    MCP server that connects Claude with Gmail to read, send, delete, and manage messages and labels via the Google Gmail API.
    3
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    A Model Context Protocol (MCP) server that enables Claude Desktop to interact with Gmail through secure OAuth 2.0 authentication. Send emails, search messages, read emails, and manage multiple Gmail accounts directly from Claude Desktop.
    192
    MIT
  • F
    license
    -
    quality
    C
    maintenance
    Full Gmail control for any MCP-compatible AI agent. Exposes ~40 tools for reading, composing, labeling, filtering, threading, and account management.
  • F
    license
    -
    quality
    C
    maintenance
    Production-ready MCP server for Gmail, enabling AI agents to search, read, send, draft, and manage emails, labels, and attachments via the Google Gmail API.

View all related MCP servers

Related MCP Connectors

  • Free public MCP for AI agents — 193 tools, 44 workflows. No API key.

  • Manage Gmail end-to-end: search, read, send, draft, label, and organize threads. Automate workflow…

  • Read, search, send, organize, draft and schedule email across your inboxes from any MCP client.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/nick-timms/drag-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server