Skip to content
Merged
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 @@ -337,6 +337,11 @@
"name": "x-ads",
"source": "third_party/x-ads",
"description": "Manage ad campaigns, create ads, track conversions, and pull performance stats."
},
{
"name": "attio",
"source": "third_party/attio",
"description": "Search and update CRM records, lists, notes, and tasks."
}
]
}
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ Official Cursor plugins for popular developer tools, frameworks, and SaaS produc
| `similarweb` | [Similarweb](third_party/similarweb/) | Cursor | Integrations | Analyze website traffic, audiences, and competitors. |
| `xero` | [Xero](third_party/xero/) | Cursor | Integrations | Read and write invoices, contacts, reports, and payroll. |
| `x-ads` | [X Ads](third_party/x-ads/) | Cursor | Integrations | Manage ad campaigns, create ads, track conversions, and pull performance stats. |
| `attio` | [Attio](third_party/attio/) | Cursor | Integrations | Search and update CRM records, lists, notes, and tasks. |
Author values match each plugin’s `plugin.json` `author.name` (Cursor lists `plugins@cursor.com` in the manifest).

## Repository structure
Expand Down
35 changes: 35 additions & 0 deletions third_party/attio/.cursor-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"name": "attio",
"displayName": "Attio",
"version": "1.0.0",
"minClientVersions": {
"cursor": "3.13.0"
},
"description": "Search and update CRM records, lists, notes, and tasks.",
"author": {
"name": "Cursor",
"email": "plugins@cursor.com"
},
"homepage": "https://docs.attio.com/mcp/overview",
"repository": "https://github.com/cursor/plugins",
"license": "MIT",
"logo": "assets/logo.png",
"keywords": [
"attio",
"crm",
"mcp",
"sales",
"records",
"lists",
"notes",
"tasks"
],
"category": "integrations",
"tags": [
"attio",
"crm",
"sales",
"mcp"
],
"mcpServers": "./mcp.json"
}
9 changes: 9 additions & 0 deletions third_party/attio/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 `attio` MCP server pointing at Attio's hosted Streamable HTTP endpoint (`https://mcp.attio.com/mcp`).
- Auth uses OAuth with Attio user login — no API key or client ID to configure.
- Logo: Attio's official mark, from the `attio` GitHub organization.
21 changes: 21 additions & 0 deletions third_party/attio/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2026 Cursor

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.
68 changes: 68 additions & 0 deletions third_party/attio/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# Attio

Cursor plugin that connects agents to [Attio](https://attio.com) through Attio'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, notes, and tasks, and search emails, meetings, and comments in the signed-in Attio workspace.

## Install

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

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

## MCP

```json
{
"mcpServers": {
"attio": {
"type": "http",
"url": "https://mcp.attio.com/mcp"
}
}
}
```

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

## Before you connect

You need an Attio account with access to a workspace. Attio MCP is available to all workspace members.

## What agents can do

| Category | Capabilities |
| --- | --- |
| Records & objects | Search, create, update, upsert, and merge people, companies, deals, and custom objects |
| Lists | Inspect lists and attributes, add records, and update list entries and stages |
| Notes | Search, create, and update notes; semantic search over note content |
| Tasks | List, create, and update tasks |
| Meetings & calls | Search call recordings and transcripts |
| Emails | Search and read emails |
| Comments | List and add comments on records and list entries |
| Workspace | List members and teams; inspect the signed-in user |
| Reporting | Run basic reports; optional read-only SQL on some plans |

The hosted runtime is the source of truth for tool names and schemas.

## Notes

- Tool calls run as the Attio 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.
- `query-particle-sql` (read-only SQL) is not available on every Attio billing plan.
- Attio hosts the server itself; this plugin does not wrap a local stdio server.
- Revoke access at any time from your Attio account settings.

## Docs

- Attio MCP overview: https://docs.attio.com/mcp/overview
- Attio MCP help center: https://attio.com/help/reference/attio-ai/attio-mcp
- Server URL: https://mcp.attio.com/mcp

Logo is Attio's official mark, from the `attio` GitHub organization.

## License

MIT
Binary file added third_party/attio/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/attio/mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"mcpServers": {
"attio": {
"type": "http",
"url": "https://mcp.attio.com/mcp"
}
}
}
Loading