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 @@ -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",
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |
Expand Down
11 changes: 7 additions & 4 deletions third_party/finance/.cursor-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "finance",
"displayName": "Finance",
"version": "1.0.0",
"version": "1.1.0",
"minClientVersions": {
"cursor": "never",
"grokbot": "0.49.0",
Expand All @@ -23,12 +23,15 @@
"subscriptions",
"balances",
"investments",
"grok"
"grok",
"mcp"
],
"category": "integrations",
"tags": [
"finance",
"accounts",
"grok"
]
"grok",
"mcp"
],
"mcpServers": "./mcp.json"
}
6 changes: 6 additions & 0 deletions third_party/finance/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
19 changes: 16 additions & 3 deletions third_party/finance/README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
8 changes: 8 additions & 0 deletions third_party/finance/mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"mcpServers": {
"finance": {
"type": "http",
"url": "https://connectors-gateway.grok.com/gateway/v1/finance/mcp"
}
}
}
34 changes: 34 additions & 0 deletions third_party/sharepoint/.cursor-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -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"
}
9 changes: 9 additions & 0 deletions third_party/sharepoint/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

- 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.
21 changes: 21 additions & 0 deletions third_party/sharepoint/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.
54 changes: 54 additions & 0 deletions third_party/sharepoint/README.md
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions third_party/sharepoint/assets/logo.svg
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/sharepoint/mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"mcpServers": {
"sharepoint": {
"type": "http",
"url": "https://api.cursor.com/rest-mcp/sharepoint/mcp"
}
}
}
Loading