Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .cursor-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -427,6 +427,11 @@
"name": "statsig",
"source": "third_party/statsig",
"description": "Inspect and manage feature gates, experiments, dynamic configs, and metrics."
},
{
"name": "clarify",
"source": "third_party/clarify",
"description": "Search and update CRM records, lists, campaigns, and meetings."
}
]
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ Official Cursor plugins for popular developer tools, frameworks, and SaaS produc
| `excalidraw` | [Excalidraw](third_party/excalidraw/) | Cursor | Integrations | Draw and export hand-drawn diagrams from chat. |
| `google-cloud-bigquery` | [Google Cloud BigQuery](third_party/google-cloud-bigquery/) | Cursor | Integrations | Explore datasets and tables and run SQL queries. |
| `statsig` | [Statsig](third_party/statsig/) | Cursor | Integrations | Inspect and manage feature gates, experiments, dynamic configs, and metrics. |
| `clarify` | [Clarify](third_party/clarify/) | Clarify | Integrations | Search and update CRM records, lists, campaigns, and meetings. |
Author values match each plugin’s `plugin.json` `author.name` (Cursor lists `plugins@cursor.com` in the manifest).

## Repository structure
Expand Down
31 changes: 31 additions & 0 deletions third_party/clarify/.cursor-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name": "clarify",
"displayName": "Clarify",
"version": "1.0.0",
"description": "Search and update CRM records, lists, campaigns, and meetings.",
"author": {
"name": "Clarify",
"email": "support@clarify.ai"
},
"homepage": "https://developer.clarify.ai/docs/getting-started/ai-agents",
"repository": "https://github.com/cursor/plugins",
"license": "MIT",
"logo": "assets/logo.png",
"keywords": [
"clarify",
"crm",
"mcp",
"sales",
"records",
"lists",
"campaigns"
],
"category": "integrations",
"tags": [
"clarify",
"crm",
"sales",
"mcp"
],
"mcpServers": "./mcp.json"
}
9 changes: 9 additions & 0 deletions third_party/clarify/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog

All notable changes to this plugin will be documented here.

## 1.0.0 — initial release

- Added the `clarify` MCP server pointing at Clarify's hosted Streamable HTTP endpoint (`https://api.clarify.ai/mcp`).
- Auth uses OAuth with Clarify user login — no API key or client ID to configure.
- Logo: Clarify's official app mark.
21 changes: 21 additions & 0 deletions third_party/clarify/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2026 Clarify

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
66 changes: 66 additions & 0 deletions third_party/clarify/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# Clarify

Cursor plugin that connects agents to [Clarify](https://clarify.ai), the AI-native CRM, through Clarify's official remote [Model Context Protocol](https://modelcontextprotocol.io/) server.

Search, create, and update CRM records (people, companies, deals, and custom objects), work with lists, campaigns, and email, manage calendar events and meeting transcripts, and run agents and workflows in the signed-in Clarify workspace.

## Install

1. Open **Cursor Settings → Plugins**.
2. Search for **Clarify**.
3. Click **Install**, then complete the Clarify sign-in prompt.

Or run `/add-plugin clarify` in chat.

## MCP

```json
{
"mcpServers": {
"clarify": {
"type": "http",
"url": "https://api.clarify.ai/mcp"
}
}
}
```

Auth is OAuth against Clarify. Cursor prompts for Clarify user login when the plugin connects — there is no API key or client ID to configure.

## Before you connect

You need a Clarify account with access to a workspace. Tools run as the signed-in user and cannot exceed that user's permissions.

## What agents can do

| Category | Capabilities |
| --- | --- |
| Records & objects | Search, create, update, merge, and delete records; read and edit schema, fields, and custom objects |
| Lists | Inspect, create, update, and delete lists |
| Lead Finder | Find leads and import them as records |
| Campaigns & email | Create and manage campaigns, view recipients, draft and send email |
| Calendar & meetings | Read and manage calendar events, respond to invites, pull transcripts, and create meeting snippets |
| Agents & workflows | Create, run, and inspect agents and workflows |
| Artifacts | Create and manage artifacts such as reports and dashboards |
| Analytics | Query records and run analytics |
| Attachments | Upload file attachments to records |
| Records collaboration | Add comments and manage record access |

The hosted runtime is the source of truth for tool names and schemas. A workspace sees a filtered view of the catalog based on its enabled features.

## Notes

- Tool calls run as the Clarify user who authorizes the connection and cannot exceed that user's permissions.
- Read operations are auto-approved. Write operations request confirmation before they change workspace data.
- Clarify hosts the server itself; this plugin does not wrap a local stdio server.
- Revoke access at any time from your Clarify account settings.

## Docs

- Connect an AI agent to Clarify: https://developer.clarify.ai/docs/getting-started/ai-agents
- Authentication: https://developer.clarify.ai/docs/getting-started/authentication
- Server URL: https://api.clarify.ai/mcp

## License

MIT
Binary file added third_party/clarify/assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions third_party/clarify/mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"mcpServers": {
"clarify": {
"type": "http",
"url": "https://api.clarify.ai/mcp"
}
}
}