Skip to content

Commit 60c641e

Browse files
authored
Merge pull request #225 from cursor/roshansada/add-amplemarket-mcp-plugin
Add Amplemarket third-party MCP plugin
2 parents a9373a7 + 4a805c4 commit 60c641e

8 files changed

Lines changed: 146 additions & 0 deletions

File tree

.cursor-plugin/marketplace.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,11 @@
167167
"name": "outreach",
168168
"source": "third_party/outreach",
169169
"description": "Search sequences, prospects, and Kaia meetings."
170+
},
171+
{
172+
"name": "amplemarket",
173+
"source": "third_party/amplemarket",
174+
"description": "Search people and companies, enrich leads, run sequences."
170175
}
171176
]
172177
}

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ Official Cursor plugins for popular developer tools, frameworks, and SaaS produc
3838
| `profound` | [Profound](third_party/profound/) | Cursor | Integrations | Track AI visibility, sentiment, and citations. |
3939
| `juicebox` | [Juicebox](third_party/juicebox/) | Cursor | Integrations | Query recruiting analytics, shortlists, and sourcing agents. |
4040
| `outreach` | [Outreach](third_party/outreach/) | Cursor | Integrations | Search sequences, prospects, and Kaia meetings. |
41+
| `amplemarket` | [Amplemarket](third_party/amplemarket/) | Cursor | Integrations | Search people and companies, enrich leads, run sequences. |
4142
Author values match each plugin’s `plugin.json` `author.name` (Cursor lists `plugins@cursor.com` in the manifest).
4243

4344
## Repository structure
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "amplemarket",
3+
"displayName": "Amplemarket",
4+
"version": "1.0.0",
5+
"minClientVersions": {
6+
"cursor": "3.13.0"
7+
},
8+
"description": "Search people and companies, enrich leads, run sequences.",
9+
"author": {
10+
"name": "Cursor",
11+
"email": "plugins@cursor.com"
12+
},
13+
"homepage": "https://knowledge.amplemarket.com/articles/8022685319-connecting-to-the-amplemarket-mcp-server",
14+
"repository": "https://github.com/cursor/plugins",
15+
"license": "MIT",
16+
"logo": "assets/logo.png",
17+
"keywords": [
18+
"amplemarket",
19+
"sales",
20+
"prospecting",
21+
"enrichment",
22+
"sequences",
23+
"leads",
24+
"mcp"
25+
],
26+
"category": "integrations",
27+
"tags": [
28+
"amplemarket",
29+
"sales",
30+
"mcp",
31+
"prospecting"
32+
],
33+
"mcpServers": "./mcp.json"
34+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Changelog
2+
3+
All notable changes to this plugin will be documented here.
4+
5+
## 1.0.0 — initial release
6+
7+
- Logo: Amplemarket's official app icon (white A on black) from https://brand.amplemarket.com.
8+
- Added the `amplemarket` MCP server pointing at `https://mcp.amplemarket.com/mcp`.
9+
- Auth uses OAuth 2.0 — no API key or client ID to configure.

third_party/amplemarket/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2026 Cursor
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

third_party/amplemarket/README.md

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# Amplemarket
2+
3+
Cursor plugin that connects agents to [Amplemarket](https://www.amplemarket.com) through Amplemarket's official remote [Model Context Protocol](https://modelcontextprotocol.io/) server.
4+
5+
Search people and companies, enrich contacts, manage lead lists and sequences, and pull analytics in the signed-in Amplemarket account.
6+
7+
## Install
8+
9+
1. Open **Cursor Settings → Plugins**.
10+
2. Search for **Amplemarket**.
11+
3. Click **Install**, then complete the Amplemarket sign-in prompt.
12+
13+
Or run `/add-plugin amplemarket` in chat.
14+
15+
## MCP
16+
17+
```json
18+
{
19+
"mcpServers": {
20+
"amplemarket": {
21+
"type": "http",
22+
"url": "https://mcp.amplemarket.com/mcp"
23+
}
24+
}
25+
}
26+
```
27+
28+
Auth is OAuth 2.0 against Amplemarket. Cursor prompts for Amplemarket sign-in when the plugin connects — there is no API key or client ID to configure.
29+
30+
## Before you connect
31+
32+
You need an active Amplemarket account. Each user signs in individually; tool calls run with that user's permissions.
33+
34+
## What agents can do
35+
36+
| Category | Capabilities |
37+
| --- | --- |
38+
| Search | People and companies with Searcher filters; saved searches and personas |
39+
| Enrichment | Person and company enrichment by email, LinkedIn URL, domain, or name + company |
40+
| Contacts & accounts | List and look up contacts/accounts, add notes, and check exclusion lists |
41+
| Lead lists | Create lists, add or remove leads, and manage custom columns |
42+
| Sequences | List sequences, create drafts, append or edit steps, and enroll or remove leads |
43+
| Workflows | List and inspect workflows; admins can create drafts via the AI Workflows agent |
44+
| Duo, inbox, tasks | Duo recommended leads, Unibox threads, tasks, and natural-language analytics |
45+
46+
The hosted runtime is the source of truth for tool names and schemas. Call `list_tasks` as a read-only smoke test after connecting.
47+
48+
## Notes
49+
50+
- Tool calls run as the Amplemarket user who authorizes the connection and cannot exceed that user's permissions.
51+
- `enrich_person` costs 0.5 credits per enrichment (same as in-app). Results cache for 24 hours. Revealing email or phone costs extra credits.
52+
- The MCP server is rate-limited to 100 requests per minute per user.
53+
- Sequence tools create and edit **draft** sequences only. Sequences are linear (no branching or HTTP-request steps). Launch, structural edits, and step deletion happen in the Amplemarket dashboard.
54+
- `create_workflow` is admin-only (25 per user per day). Drafts must be reviewed and activated in Amplemarket.
55+
- `complete_task` records completion only — it does not send the email, place the call, or perform the LinkedIn action.
56+
57+
## Docs
58+
59+
- Connecting to the Amplemarket MCP server: https://knowledge.amplemarket.com/articles/8022685319-connecting-to-the-amplemarket-mcp-server
60+
- Building sequences with MCP: https://knowledge.amplemarket.com/articles/2128059926-building-sequences-with-amplemarket-mcp
61+
- MCP overview: https://www.amplemarket.com/integrations/mcp-model-context-protocol
62+
- Server URL: https://mcp.amplemarket.com/mcp
63+
64+
Logo is Amplemarket's official app icon (white A on black) from https://brand.amplemarket.com.
65+
66+
## License
67+
68+
MIT
4.62 KB
Loading

third_party/amplemarket/mcp.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"mcpServers": {
3+
"amplemarket": {
4+
"type": "http",
5+
"url": "https://mcp.amplemarket.com/mcp"
6+
}
7+
}
8+
}

0 commit comments

Comments
 (0)