MCP docs
MentionDrop MCP setup and tool reference
MentionDrop exposes a public MCP endpoint backed by the v1 API and your account API keys. Connect it to Claude, Cursor, Windsurf, Hermes, or any MCP-aware client to query brand mentions, competitor signals, demand signals, digests, and reply drafts.
Quick start
Create an API key in Settings, then verify it works:
curl https://www.mentiondrop.com/api/v1/me \
-H "Authorization: Bearer YOUR_API_KEY"A 200 response confirms your key is valid and shows your plan metadata. Then add the MCP endpoint to your agent client below.
Endpoint and auth
https://www.mentiondrop.com/api/mcp
Authorization: Bearer md_live_xxxMCP uses the same API-key auth, account scoping, plan gates, and service logic as the HTTP API. Keys are prefixed md_live_. Create one in Settings.
Ask your agent to set it up
Paste this prompt into Claude, Cursor, Windsurf, or any MCP-aware client and it will find the right config file and add MentionDrop for you.
Add MentionDrop as an MCP server.
Endpoint: https://www.mentiondrop.com/api/mcp
Auth header: Authorization: Bearer md_live_YOUR_KEY
Find my MCP config file and add the server entry.
If unsure which file, check for claude_desktop_config.json
or .cursor/mcp.json.Replace md_live_YOUR_KEY with your API key from Settings before pasting.
Generic MCP client config
Works with Claude Desktop, Cursor, Windsurf, and any other client that accepts an HTTP MCP server.
{
"mcpServers": {
"mentiondrop": {
"type": "http",
"url": "https://www.mentiondrop.com/api/mcp",
"headers": {
"Authorization": "Bearer md_live_xxx"
}
}
}
}Hermes config
tools:
mcp_servers:
mentiondrop:
type: http
url: https://www.mentiondrop.com/api/mcp
headers:
Authorization: Bearer md_live_xxxRead tools
list_keywordsList monitored keywords for the authenticated account.
get_recent_mentionsFetch recent mentions with optional role, keyword, source, sentiment, and date filters.
search_mentionsSearch returned mentions by title, summary, URL, suggested action, or keyword.
get_competitor_signalsFetch competitor-role mentions, optionally filtered to one competitor keyword.
get_pain_signalsFetch industry/demand mentions likely to represent public pain signals.
get_digestReturn owned-brand, competitor, demand, and reply-worthy mention groups in one call.
get_mentionFetch one account-owned mention by ID.
Action tools
create_keywordCreate a monitored keyword within plan limits and keyword-risk checks.
update_keywordUpdate keyword metadata, relevance thresholds, active state, or filters.
mark_mention_reviewedMark a mention as relevant or not relevant after human review.
generate_reply_draftGenerate a reply or outreach email draft for a processed mention.
Useful prompts
Copy these directly into your agent or use them as starting points.
How MentionDrop works
- 1Sources are bounded and high-signal: Reddit, Google News, search results, and selected public web results. MentionDrop is not full social firehose coverage.
- 2Action tools (
create_keyword,update_keyword) make real changes to your account. Keep them behind human intent in agent workflows. - 3
generate_reply_draftcreates draft content for human review. It does not send or post anything automatically.