Install
openclaw skills install @shash7/mentionkit-skillQuery and manage Mentionkit social monitoring workflows to review brand mentions, find reply opportunities, shortlist leads, inspect sources, and create trac...
openclaw skills install @shash7/mentionkit-skillname mentionkit description Query and manage Mentionkit social monitoring workflows. Use when the user wants to review brand mentions, find actionable reply opportunities, shortlist lead-gen conversations, inspect source links, or create tracked keywords inside Mentionkit. Prefer the Mentionkit MCP server when available; otherwise use the Mentionkit Public API v1 for narrower read-only scripting and basic data access. license MIT metadata author version mentionkit
0.1.0
compatibility Requires a Mentionkit workspace with MCP access or API access. MCP needs an MCP-capable agent. API v1 needs internet access and a Mentionkit API key.
Mentionkit is a social monitoring tool. A workspace tracks projects and keywords, collects matching mentions across platforms, scores them for relevance, and helps operators review, verify, and respond to the strongest conversations. Mentionkit MCP is built around a context-first workflow: load the workflow context first, shortlist the best mentions second, and inspect source links before making a final judgment.
There are two ways to work with Mentionkit. Prefer the MCP server for interactive agent workflows. Fall back to the public API v1 for scripting, basic mention access, organization/project/keyword reads, and simple mention actions in environments without MCP.
If Mentionkit MCP tools are already connected, use them and skip setup.
Use the exact MCP server URL shown in Mentionkit workspace settings.
Once connected, the server sends its own instructions and every tool is self-described. Current Mentionkit tools are:
mentionkit_opportunities_contextmentionkit_find_opportunitiesmentionkit_mentions_contextmentionkit_list_mentions_rawmentionkit_fetch_urlmentionkit_create_keyword (write scope only)Read the tool descriptions and do not guess parameters.
mentionkit_opportunities_context before mentionkit_find_opportunities.mentionkit_mentions_context before mentionkit_list_mentions_raw.mentionkit_fetch_url after keeping shortlist rows from mentionkit_find_opportunities.mentionkit_find_opportunities over raw mention listing for review workflows.1-5 scale.mentionkit_fetch_url fails, lower confidence instead of treating the mention as verified.mentionkit_create_keyword mutates the live workspace. Never invent project values, platform settings, subreddit lists, banned words, or classifier prompts.mentionkit_find_opportunities requires an explicit project choice. Do not mix multiple projects in one review workflow.mentionkit_list_mentions_raw paginates with nextCursor, and that cursor is ID-based. Pass it back unchanged.mentionkit_fetch_url returns a success envelope even when fetch fails. Check fetchStatus before treating the source as verified.mentionkit_create_keyword only appears when the token has mcp:write scope.Use this when MCP is not available or you are scripting.
Base URL: https://api.mentionkit.com
OpenAPI: https://api.mentionkit.com/openapi.json
YAML: https://api.mentionkit.com/openapi.yaml
Mentionkit API v1 is a narrower public data API. It does not expose the same workflow-first context tools as MCP.
Use a Mentionkit API key in the Authorization header as a Bearer token.
curl "https://api.mentionkit.com/api/v1/projects" \
-H "Authorization: Bearer $MENTIONKIT_API_KEY"
GET /api/v1/mentionsPOST /api/v1/mentions/:idPUT /api/v1/mentions/:id/commentGET /api/v1/keywordsGET /api/v1/projectsGET /api/v1/meUse API v1 for:
Do not treat API v1 as a replacement for:
mentionkit_opportunities_contextmentionkit_find_opportunitiesmentionkit_mentions_contextmentionkit_fetch_urlplatform, keywords, startdate, and enddate.nextCursor; pass it back unchanged for the next page.mentionkit_find_opportunities, then fetch the kept URLs before making a final call.mentionkit_mentions_context first, then paginate with mentionkit_list_mentions_raw only as needed.