diff --git a/.cursor-plugin/marketplace.json b/.cursor-plugin/marketplace.json index e0839548e..d606d4b73 100644 --- a/.cursor-plugin/marketplace.json +++ b/.cursor-plugin/marketplace.json @@ -357,6 +357,16 @@ "name": "gamma", "source": "third_party/gamma", "description": "Generate presentations, documents, and webpages." + }, + { + "name": "sharepoint", + "source": "third_party/sharepoint", + "description": "Search and read SharePoint sites, pages, and files, powered by Grok." + }, + { + "name": "finance", + "source": "third_party/finance", + "description": "Portfolio, balances, and transactions from your linked brokerages, powered by Grok." } ] } diff --git a/README.md b/README.md index c239f8564..22e3b6b06 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,8 @@ Official Cursor plugins for popular developer tools, frameworks, and SaaS produc | `hunter` | [Hunter](third_party/hunter/) | Cursor | Integrations | Find and verify emails, discover companies, and save leads. | | `gamma` | [Gamma](third_party/gamma/) | Cursor | Integrations | Generate presentations, documents, and webpages. | | `teams` | [Teams](third_party/teams/) | Cursor | Productivity | Search, read, and send Microsoft Teams chats and channel messages. | +| `sharepoint` | [SharePoint](third_party/sharepoint/) | Cursor | Integrations | Search and read SharePoint sites, pages, and files, powered by Grok. | +| `finance` | [Finance](third_party/finance/) | Cursor | Integrations | Portfolio, balances, and transactions from your linked brokerages, powered by Grok. | Author values match each plugin’s `plugin.json` `author.name` (Cursor lists `plugins@cursor.com` in the manifest). ## Repository structure diff --git a/third_party/finance/.cursor-plugin/plugin.json b/third_party/finance/.cursor-plugin/plugin.json new file mode 100644 index 000000000..6b602231d --- /dev/null +++ b/third_party/finance/.cursor-plugin/plugin.json @@ -0,0 +1,31 @@ +{ + "name": "finance", + "displayName": "Finance", + "version": "1.0.0", + "minClientVersions": { + "cursor": "3.13.0" + }, + "description": "Portfolio, balances, and transactions from your linked brokerages, powered by Grok.", + "author": { + "name": "Cursor", + "email": "plugins@cursor.com" + }, + "homepage": "https://grok.com/connectors", + "repository": "https://github.com/cursor/plugins", + "license": "MIT", + "logo": "assets/logo.png", + "keywords": [ + "finance", + "portfolio", + "brokerage", + "plaid", + "transactions", + "grok" + ], + "category": "integrations", + "tags": [ + "finance", + "portfolio", + "grok" + ] +} diff --git a/third_party/finance/CHANGELOG.md b/third_party/finance/CHANGELOG.md new file mode 100644 index 000000000..9e8b0d844 --- /dev/null +++ b/third_party/finance/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +All notable changes to this plugin will be documented here. + +## 1.0.0 — initial release + +- Added a marketplace card for Grok's `Finance` connector. No MCP server is bundled; tools are served through the Grok connector bridge once the accounts are linked and the connector is connected on grok.com. +- Logo: Grok's product mark, from grok.com. diff --git a/third_party/finance/LICENSE b/third_party/finance/LICENSE new file mode 100644 index 000000000..ca2bba771 --- /dev/null +++ b/third_party/finance/LICENSE @@ -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. diff --git a/third_party/finance/README.md b/third_party/finance/README.md new file mode 100644 index 000000000..896e5284b --- /dev/null +++ b/third_party/finance/README.md @@ -0,0 +1,51 @@ +# Finance + +Cursor plugin for Grok's **Finance** connector. The connector runs on Grok's backend; this plugin makes it discoverable and installable from the Cursor marketplace so the same connection is usable in Cursor. + +Portfolio, balances, and transactions from your linked brokerages, powered by Grok. + +## Install + +1. Open **Cursor Settings → Plugins**. +2. Search for **Finance**. +3. Click **Install**. + +Or run `/add-plugin finance` in chat. + +## How it works + +This plugin ships no MCP server of its own. Grok links your brokerage and bank accounts through Plaid and exposes the resulting portfolio data as tools. Once your Cursor and Grok accounts are linked, Cursor lists and calls those tools through the Grok connector bridge. + +## Before you connect + +1. Link your Cursor account to your Grok account. +2. Connect **Finance** under **Finance** in grok.com and complete its sign-in there. +3. Install this plugin in Cursor. + +Installing this plugin does not start a sign-in flow. If the connector is not connected on grok.com, the plugin installs but contributes no tools until it is. + +## What agents can do + +| Category | Capabilities | +| --- | --- | +| Portfolio | Holdings and allocation across linked accounts | +| Balances | Account balances and cash positions | +| Transactions | Recent activity across linked accounts | + +The Grok connector runtime is the source of truth for tool names and schemas. + +## Notes + +- Tool calls run under the Grok connection and its permissions, not a Cursor-held token. +- Reconnecting an expired connection is done on grok.com for now. +- Cursor and Grok de-duplicate connectors by server URL; this connector has none, so it never collides with a Cursor-native plugin. + +## Docs + +- Grok connectors: https://grok.com/connectors + +Logo is Grok's product mark, from grok.com, because the connector runs on Grok and aggregates brokerages rather than representing a single vendor. + +## License + +MIT diff --git a/third_party/finance/assets/logo.png b/third_party/finance/assets/logo.png new file mode 100644 index 000000000..5e67b1f00 Binary files /dev/null and b/third_party/finance/assets/logo.png differ diff --git a/third_party/sharepoint/.cursor-plugin/plugin.json b/third_party/sharepoint/.cursor-plugin/plugin.json new file mode 100644 index 000000000..4d02c8362 --- /dev/null +++ b/third_party/sharepoint/.cursor-plugin/plugin.json @@ -0,0 +1,31 @@ +{ + "name": "sharepoint", + "displayName": "SharePoint", + "version": "1.0.0", + "minClientVersions": { + "cursor": "3.13.0" + }, + "description": "Search and read SharePoint sites, pages, and files, powered by Grok.", + "author": { + "name": "Cursor", + "email": "plugins@cursor.com" + }, + "homepage": "https://grok.com/connectors", + "repository": "https://github.com/cursor/plugins", + "license": "MIT", + "logo": "assets/logo.png", + "keywords": [ + "sharepoint", + "microsoft 365", + "documents", + "sites", + "search", + "grok" + ], + "category": "integrations", + "tags": [ + "sharepoint", + "microsoft 365", + "grok" + ] +} diff --git a/third_party/sharepoint/CHANGELOG.md b/third_party/sharepoint/CHANGELOG.md new file mode 100644 index 000000000..29289f8f9 --- /dev/null +++ b/third_party/sharepoint/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +All notable changes to this plugin will be documented here. + +## 1.0.0 — initial release + +- Added a marketplace card for Grok's `SharePoint` connector. No MCP server is bundled; tools are served through the Grok connector bridge once the accounts are linked and the connector is connected on grok.com. +- Logo: Official Microsoft SharePoint product icon from Microsoft's Fluent brand icon CDN, on a padded white tile. diff --git a/third_party/sharepoint/LICENSE b/third_party/sharepoint/LICENSE new file mode 100644 index 000000000..ca2bba771 --- /dev/null +++ b/third_party/sharepoint/LICENSE @@ -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. diff --git a/third_party/sharepoint/README.md b/third_party/sharepoint/README.md new file mode 100644 index 000000000..dade879b6 --- /dev/null +++ b/third_party/sharepoint/README.md @@ -0,0 +1,51 @@ +# SharePoint + +Cursor plugin for Grok's **SharePoint** connector. The connector runs on Grok's backend; this plugin makes it discoverable and installable from the Cursor marketplace so the same connection is usable in Cursor. + +Search and read SharePoint sites, pages, and files, powered by Grok. + +## Install + +1. Open **Cursor Settings → Plugins**. +2. Search for **SharePoint**. +3. Click **Install**. + +Or run `/add-plugin sharepoint` in chat. + +## How it works + +This plugin ships no MCP server of its own. Grok indexes the SharePoint sites you connect and answers questions grounded in their pages and files. Once your Cursor and Grok accounts are linked, Cursor lists and calls those tools through the Grok connector bridge. + +## Before you connect + +1. Link your Cursor account to your Grok account. +2. Connect **SharePoint** under **Connectors** in grok.com settings and complete its sign-in there. +3. Install this plugin in Cursor. + +Installing this plugin does not start a sign-in flow. If the connector is not connected on grok.com, the plugin installs but contributes no tools until it is. + +## What agents can do + +| Category | Capabilities | +| --- | --- | +| Search | Find pages and files across connected SharePoint sites | +| Read | Read page and document content with citations | +| Sites | Browse the sites and libraries you have connected | + +The Grok connector runtime is the source of truth for tool names and schemas. + +## Notes + +- Tool calls run under the Grok connection and its permissions, not a Cursor-held token. +- Reconnecting an expired connection is done on grok.com for now. +- Cursor and Grok de-duplicate connectors by server URL; this connector has none, so it never collides with a Cursor-native plugin. + +## Docs + +- Grok connectors: https://grok.com/connectors + +Logo is the official Microsoft SharePoint product icon from Microsoft's Fluent brand icon CDN, on a padded white tile. + +## License + +MIT diff --git a/third_party/sharepoint/assets/logo.png b/third_party/sharepoint/assets/logo.png new file mode 100644 index 000000000..040d2bc29 Binary files /dev/null and b/third_party/sharepoint/assets/logo.png differ