From 90b852d2aa9206927b6a4eacab023302b38f3b5b Mon Sep 17 00:00:00 2001 From: Minu Palaniappan Date: Mon, 14 Sep 2026 11:14:27 -0400 Subject: [PATCH] feat(third_party): SharePoint and Finance as MCP plugins - finance 1.1.0: add mcp.json pointing at the Grok connectors gateway streamable-HTTP MCP (https://connectors-gateway.grok.com/gateway/v1/finance/mcp). Still Grok Bot 0.49+ only and never allowed in Cursor. - sharepoint 1.0.0: new plugin pointing at Cursor's REST-MCP translator (https://api.cursor.com/rest-mcp/sharepoint/mcp), mirroring onedrive/teams. Read-only (Sites.Read.All). Official Fluent brand icon on a padded tile. - Register sharepoint in marketplace.json and the README table. --- .cursor-plugin/marketplace.json | 5 ++ README.md | 1 + .../finance/.cursor-plugin/plugin.json | 11 ++-- third_party/finance/CHANGELOG.md | 6 +++ third_party/finance/README.md | 19 +++++-- third_party/finance/mcp.json | 8 +++ .../sharepoint/.cursor-plugin/plugin.json | 34 ++++++++++++ third_party/sharepoint/CHANGELOG.md | 9 ++++ third_party/sharepoint/LICENSE | 21 ++++++++ third_party/sharepoint/README.md | 54 +++++++++++++++++++ third_party/sharepoint/assets/logo.svg | 1 + third_party/sharepoint/mcp.json | 8 +++ 12 files changed, 170 insertions(+), 7 deletions(-) create mode 100644 third_party/finance/mcp.json create mode 100644 third_party/sharepoint/.cursor-plugin/plugin.json create mode 100644 third_party/sharepoint/CHANGELOG.md create mode 100644 third_party/sharepoint/LICENSE create mode 100644 third_party/sharepoint/README.md create mode 100644 third_party/sharepoint/assets/logo.svg create mode 100644 third_party/sharepoint/mcp.json diff --git a/.cursor-plugin/marketplace.json b/.cursor-plugin/marketplace.json index 0683c2533..a3d15f20d 100644 --- a/.cursor-plugin/marketplace.json +++ b/.cursor-plugin/marketplace.json @@ -333,6 +333,11 @@ "source": "third_party/onedrive", "description": "Browse, search, and read Microsoft OneDrive files." }, + { + "name": "sharepoint", + "source": "third_party/sharepoint", + "description": "Search and read Microsoft SharePoint sites, document libraries, files, and lists." + }, { "name": "teams", "source": "third_party/teams", diff --git a/README.md b/README.md index 777e787b4..75c92cf5b 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,7 @@ 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 | Productivity | Search and read Microsoft SharePoint sites, document libraries, files, and lists. | | `finance` | [Finance](third_party/finance/) | Cursor | Integrations | Securely connect your accounts so Grok can help with questions about your spending, subscriptions, balances, and investments. | | `webull` | [Webull](third_party/webull/) | Cursor | Integrations | View accounts, positions, orders, watchlists, and market data. | | `sp-global` | [S&P Global](third_party/sp-global/) | Cursor | Integrations | Query S&P Capital IQ financials, prices, and transcripts. | diff --git a/third_party/finance/.cursor-plugin/plugin.json b/third_party/finance/.cursor-plugin/plugin.json index 08131ffaa..5344c47c1 100644 --- a/third_party/finance/.cursor-plugin/plugin.json +++ b/third_party/finance/.cursor-plugin/plugin.json @@ -1,7 +1,7 @@ { "name": "finance", "displayName": "Finance", - "version": "1.0.0", + "version": "1.1.0", "minClientVersions": { "cursor": "never", "grokbot": "0.49.0", @@ -23,12 +23,15 @@ "subscriptions", "balances", "investments", - "grok" + "grok", + "mcp" ], "category": "integrations", "tags": [ "finance", "accounts", - "grok" - ] + "grok", + "mcp" + ], + "mcpServers": "./mcp.json" } diff --git a/third_party/finance/CHANGELOG.md b/third_party/finance/CHANGELOG.md index 9bda42072..d4b0e9d59 100644 --- a/third_party/finance/CHANGELOG.md +++ b/third_party/finance/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this plugin will be documented here. +## 1.1.0 — MCP server + +- Added the `finance` MCP server pointing at `https://connectors-gateway.grok.com/gateway/v1/finance/mcp`, the streamable-HTTP transport of the Grok Finance connector. +- Auth is the caller's linked Grok account, attached by the Cursor backend; no client sign-in prompt. +- Still Grok Bot 0.49 or newer only, and never allowed in Cursor. + ## 1.0.0 — initial release - Added an empty Finance marketplace card that mirrors the Grok Finance connector. diff --git a/third_party/finance/README.md b/third_party/finance/README.md index ca969fbf4..5d6a07637 100644 --- a/third_party/finance/README.md +++ b/third_party/finance/README.md @@ -1,16 +1,29 @@ # Finance -Marketplace mirror of the Grok **Finance** connector. +Grok Bot plugin that connects agents to the Grok **Finance** connector through its remote [Model Context Protocol](https://modelcontextprotocol.io/) server on the Grok connectors gateway. Securely connect your accounts so Grok can help with questions about your spending, subscriptions, balances, and investments. -This plugin is empty on purpose. It has no skills and no connector of its own. The Cursor backend handles this plugin specially and talks to the Finance connector there. - ## Who can use it - Grok Bot **0.49** or newer. - Not available in Cursor. Cursor must not list or install this plugin. +## MCP + +```json +{ + "mcpServers": { + "finance": { + "type": "http", + "url": "https://connectors-gateway.grok.com/gateway/v1/finance/mcp" + } + } +} +``` + +The server is hosted by xAI and authenticates with the Grok account linked to the caller. There is no sign-in prompt in the client: the Cursor backend attaches the linked account's credential when it dials this URL. Linking accounts on grok.com (Plaid) happens on grok.com; until an account is linked, the connector reports that it needs authorization. + ## About this connector - **See your finances in chat.** Ask about balances, recent spending, subscriptions, and investments across linked accounts. diff --git a/third_party/finance/mcp.json b/third_party/finance/mcp.json new file mode 100644 index 000000000..1b8a8c12e --- /dev/null +++ b/third_party/finance/mcp.json @@ -0,0 +1,8 @@ +{ + "mcpServers": { + "finance": { + "type": "http", + "url": "https://connectors-gateway.grok.com/gateway/v1/finance/mcp" + } + } +} diff --git a/third_party/sharepoint/.cursor-plugin/plugin.json b/third_party/sharepoint/.cursor-plugin/plugin.json new file mode 100644 index 000000000..8137c2fb7 --- /dev/null +++ b/third_party/sharepoint/.cursor-plugin/plugin.json @@ -0,0 +1,34 @@ +{ + "name": "sharepoint", + "displayName": "SharePoint", + "version": "1.0.0", + "minClientVersions": { + "cursor": "3.19.0", + "sand": "0.30.0" + }, + "description": "Search and read Microsoft SharePoint sites, document libraries, files, and lists.", + "author": { + "name": "Cursor", + "email": "plugins@cursor.com" + }, + "homepage": "https://github.com/cursor/plugins/tree/main/third_party/sharepoint", + "repository": "https://github.com/cursor/plugins", + "license": "MIT", + "logo": "assets/logo.svg", + "keywords": [ + "sharepoint", + "sites", + "files", + "lists", + "microsoft", + "mcp" + ], + "category": "productivity", + "tags": [ + "sharepoint", + "files", + "mcp", + "microsoft-365" + ], + "mcpServers": "./mcp.json" +} diff --git a/third_party/sharepoint/CHANGELOG.md b/third_party/sharepoint/CHANGELOG.md new file mode 100644 index 000000000..c80c83522 --- /dev/null +++ b/third_party/sharepoint/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +All notable changes to this plugin will be documented here. + +## 1.0.0 — initial release + +- Logo: official Microsoft SharePoint product icon from Microsoft's Fluent brand icon CDN, on a padded white tile. +- Added the `sharepoint` MCP server pointing at `https://api.cursor.com/rest-mcp/sharepoint/mcp`. +- Read-only: sites, document libraries, files, and lists via the delegated `Sites.Read.All` scope. 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..d898312ce --- /dev/null +++ b/third_party/sharepoint/README.md @@ -0,0 +1,54 @@ +# SharePoint + +Cursor plugin that connects agents to [Microsoft SharePoint](https://www.microsoft.com/microsoft-365/sharepoint/collaboration) through Cursor's remote [Model Context Protocol](https://modelcontextprotocol.io/) server. + +Search for sites, browse a site's document libraries and folders, search and read files, and read SharePoint lists and list items in the signed-in Microsoft account. + +## SharePoint vs. OneDrive + +The [OneDrive plugin](../onedrive/) reaches the signed-in user's **personal drive**. This plugin reaches the **sites** the user can access: team and communication sites, their document libraries, and their lists. Install both if you want personal files and team sites covered. + +## Install + +1. Open **Cursor Settings → Plugins**. +2. Search for **SharePoint**. +3. Click **Install**, then complete the Microsoft sign-in prompt. + +Or run `/add-plugin sharepoint` in chat. + +## MCP + +```json +{ + "mcpServers": { + "sharepoint": { + "type": "http", + "url": "https://api.cursor.com/rest-mcp/sharepoint/mcp" + } + } +} +``` + +Auth is OAuth 2.0 against Microsoft (Entra ID). Cursor prompts for Microsoft sign-in when the plugin connects. + +The plugin is read-only. It requests the delegated `Sites.Read.All` scope, which Microsoft classifies as high-impact, so most work or school tenants require an administrator to consent once before members can connect. + +## Tools + +| Area | Tools | +|:-----|:------| +| Sites | `search_sites`, `get_site` | +| Document libraries | `list_site_drives`, `list_site_drive_items`, `search_site_drive_items`, `get_site_drive_item` | +| Lists | `list_site_lists`, `get_list`, `list_list_items`, `get_list_item` | + +## Docs + +- SharePoint sites API (Microsoft Graph): https://learn.microsoft.com/en-us/graph/api/resources/sharepoint +- Microsoft Graph overview: https://learn.microsoft.com/en-us/graph/overview + +Logo is the official Microsoft SharePoint product icon from Microsoft's Fluent brand icon CDN, placed on a white tile with padding so it reads well in the Cursor UI: +https://res-1.cdn.office.net/files/fabric-cdn-prod_20240411.001/assets/brand-icons/product/svg/sharepoint_48x1.svg + +## License + +MIT diff --git a/third_party/sharepoint/assets/logo.svg b/third_party/sharepoint/assets/logo.svg new file mode 100644 index 000000000..8d5b5325c --- /dev/null +++ b/third_party/sharepoint/assets/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/third_party/sharepoint/mcp.json b/third_party/sharepoint/mcp.json new file mode 100644 index 000000000..5e3b1a4ca --- /dev/null +++ b/third_party/sharepoint/mcp.json @@ -0,0 +1,8 @@ +{ + "mcpServers": { + "sharepoint": { + "type": "http", + "url": "https://api.cursor.com/rest-mcp/sharepoint/mcp" + } + } +}