feat(third_party): add Clarify plugin - #408
Open
patrickt010 wants to merge 2 commits into
Open
patrickt010 wants to merge 2 commits into
patrickt010 wants to merge 2 commits into
Conversation
Add Clarify, the AI-native CRM, as a third-party MCP integration. Connects to Clarify's hosted Streamable HTTP MCP server (https://api.clarify.ai/mcp) with OAuth login handled by Cursor (no API key or client ID to configure). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
third_party/marketplace plugin, in the Attio (Add Attio third-party MCP plugin #339) / Hunter (Add Hunter third-party MCP plugin (API key header auth) #340) shape..cursor-plugin/marketplace.json.CLIENT_ID/CLIENT_SECRETvariables needed; the authorization server supports dynamic client registration.main.https://api.clarify.ai/mcp401→ protected-resource metadata advertises authorization serverauth1.clarify.aiand scopesopenid profile email offline_access; AS exposesregistration_endpoint(/oauth2/register) with PKCES256andauthorization_code+refresh_tokengrants.MCP
{ "mcpServers": { "clarify": { "type": "http", "url": "https://api.clarify.ai/mcp" } } }Files
third_party/clarify/.cursor-plugin/plugin.json,mcp.jsonthird_party/clarify/README.md,CHANGELOG.md,LICENSEthird_party/clarify/assets/logo.png(192×192, Clarify's official app mark)Verification
node scripts/validate-plugins.mjs→ All plugins validated successfully.third_party/attio/.Note
Low Risk
Marketplace manifest and documentation-only plugin wiring with no changes to core app logic, auth flows, or database access in this repo.
Overview
Adds Clarify as a new
third_party/clarifymarketplace plugin so Cursor agents can reach Clarify’s CRM via a hosted remote MCP server athttps://api.clarify.ai/mcp.The change registers
clarifyin.cursor-plugin/marketplace.jsonand the root plugin table inREADME.md, and ships the usual plugin bundle:.cursor-plugin/plugin.json,mcp.json(HTTP MCP only—no local stdio wrapper), docs, changelog, MIT license, and logo. Auth is documented as OAuth user login with no API keys in the manifest.This mirrors other CRM-style third-party entries (e.g. Attio): configuration is mostly wiring the remote endpoint; tool behavior lives on Clarify’s hosted runtime.
Reviewed by Cursor Bugbot for commit 35aefa5. Bugbot is set up for automated code reviews on this repo. Configure here.