diff --git a/.cursor-plugin/marketplace.json b/.cursor-plugin/marketplace.json index 9cb30e8b9..8171c179a 100644 --- a/.cursor-plugin/marketplace.json +++ b/.cursor-plugin/marketplace.json @@ -347,8 +347,51 @@ "name": "hunter", "source": "third_party/hunter", "description": "Find and verify emails, discover companies, and save leads." + }, + { + "name": "coinbase", + "source": "third_party/coinbase", + "description": "Check balances, get quotes, and preview or place trades." + }, + { + "name": "gamma", + "source": "third_party/gamma", + "description": "Generate presentations, documents, and webpages." + }, + { + "name": "google-cloud-bigquery", + "source": "third_party/google-cloud-bigquery", + "description": "Explore datasets and tables and run SQL queries." + }, + { + "name": "interactive-brokers", + "source": "third_party/interactive-brokers", + "description": "Review positions, balances, P&L, and draft trade instructions." + }, + { + "name": "meltwater", + "source": "third_party/meltwater", + "description": "Search media and social mentions and pull analytics." + }, + { + "name": "sp-global", + "source": "third_party/sp-global", + "description": "Query S&P Capital IQ financials, prices, and transcripts." + }, + { + "name": "webull", + "source": "third_party/webull", + "description": "View accounts, positions, orders, watchlists, and market data." + }, + { + "name": "excalidraw", + "source": "third_party/excalidraw", + "description": "Draw and export hand-drawn diagrams from chat." + }, + { + "name": "daloopa", + "source": "third_party/daloopa", + "description": "Pull source-linked fundamentals, KPIs, filings, and prices." } ] } - - diff --git a/README.md b/README.md index 32103e163..500f2ad1f 100644 --- a/README.md +++ b/README.md @@ -71,6 +71,15 @@ Official Cursor plugins for popular developer tools, frameworks, and SaaS produc | `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. | | `hunter` | [Hunter](third_party/hunter/) | Cursor | Integrations | Find and verify emails, discover companies, and save leads. | +| `coinbase` | [Coinbase](third_party/coinbase/) | Cursor | Integrations | Check balances, get quotes, and preview or place trades. | +| `gamma` | [Gamma](third_party/gamma/) | Cursor | Integrations | Generate presentations, documents, and webpages. | +| `google-cloud-bigquery` | [Google Cloud BigQuery](third_party/google-cloud-bigquery/) | Cursor | Integrations | Explore datasets and tables and run SQL queries. | +| `interactive-brokers` | [Interactive Brokers](third_party/interactive-brokers/) | Cursor | Integrations | Review positions, balances, P&L, and draft trade instructions. | +| `meltwater` | [Meltwater](third_party/meltwater/) | Cursor | Integrations | Search media and social mentions and pull analytics. | +| `sp-global` | [S&P Global](third_party/sp-global/) | Cursor | Integrations | Query S&P Capital IQ financials, prices, and transcripts. | +| `webull` | [Webull](third_party/webull/) | Cursor | Integrations | View accounts, positions, orders, watchlists, and market data. | +| `excalidraw` | [Excalidraw](third_party/excalidraw/) | Cursor | Integrations | Draw and export hand-drawn diagrams from chat. | +| `daloopa` | [Daloopa](third_party/daloopa/) | Cursor | Integrations | Pull source-linked fundamentals, KPIs, filings, and prices. | 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/coinbase/.cursor-plugin/plugin.json b/third_party/coinbase/.cursor-plugin/plugin.json new file mode 100644 index 000000000..bdbca8948 --- /dev/null +++ b/third_party/coinbase/.cursor-plugin/plugin.json @@ -0,0 +1,54 @@ +{ + "name": "coinbase", + "displayName": "Coinbase", + "version": "1.0.0", + "minClientVersions": { + "cursor": "3.13.0" + }, + "description": "Check balances, get quotes, and preview or place trades.", + "author": { + "name": "Cursor", + "email": "plugins@cursor.com" + }, + "homepage": "https://docs.cdp.coinbase.com/coinbase-for-agents/overview", + "repository": "https://github.com/cursor/plugins", + "license": "MIT", + "logo": "assets/logo.png", + "keywords": [ + "coinbase", + "crypto", + "trading", + "portfolio", + "balances", + "market data", + "advanced trade", + "mcp" + ], + "category": "integrations", + "tags": [ + "coinbase", + "finance", + "crypto", + "mcp" + ], + "variables": { + "type": "object", + "properties": { + "CLIENT_ID": { + "type": "string", + "title": "Coinbase OAuth Client ID", + "description": "OAuth client ID from the Coinbase Developer Platform portal (portal.cdp.coinbase.com \u2192 OAuth)." + }, + "CLIENT_SECRET": { + "type": "string", + "title": "Coinbase OAuth Client Secret", + "description": "OAuth client secret from the same Coinbase Developer Platform OAuth client." + } + }, + "required": [ + "CLIENT_ID", + "CLIENT_SECRET" + ] + }, + "mcpServers": "./mcp.json" +} diff --git a/third_party/coinbase/CHANGELOG.md b/third_party/coinbase/CHANGELOG.md new file mode 100644 index 000000000..c4a502a27 --- /dev/null +++ b/third_party/coinbase/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +All notable changes to this plugin will be documented here. + +## 1.0.0 — initial release + +- Added the `coinbase` MCP server pointing at Coinbase's hosted Streamable HTTP endpoint (`https://agents.coinbase.com/mcp`). +- Auth uses OAuth with Coinbase user login. Declared `CLIENT_ID` and `CLIENT_SECRET` plugin variables and forwarded them through MCP auth, since `login.coinbase.com` does not support dynamic client registration. +- Logo: Coinbase's official mark, from the `coinbase` GitHub organization. diff --git a/third_party/coinbase/LICENSE b/third_party/coinbase/LICENSE new file mode 100644 index 000000000..ca2bba771 --- /dev/null +++ b/third_party/coinbase/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/coinbase/README.md b/third_party/coinbase/README.md new file mode 100644 index 000000000..5088a9b7a --- /dev/null +++ b/third_party/coinbase/README.md @@ -0,0 +1,69 @@ +# Coinbase + +Cursor plugin that connects agents to [Coinbase](https://docs.cdp.coinbase.com/coinbase-for-agents/overview) through Coinbase's official remote [Model Context Protocol](https://modelcontextprotocol.io/) server. + +Check balances, get quotes, and preview or place trades. + +## Install + +1. Open **Cursor Settings → Plugins**. +2. Search for **Coinbase**. +3. Click **Install**, then follow **Setup** below. + +Or run `/add-plugin coinbase` in chat. + +## MCP + +```json +{ + "mcpServers": { + "coinbase": { + "url": "https://agents.coinbase.com/mcp", + "auth": { + "CLIENT_ID": "${CLIENT_ID}", + "CLIENT_SECRET": "${CLIENT_SECRET}" + } + } + } +} +``` + +## Setup + +Coinbase's authorization server (`login.coinbase.com`) does not support dynamic client registration, so an OAuth client has to be registered before anyone can connect. + +1. In the [Coinbase Developer Platform portal](https://portal.cdp.coinbase.com/), create an OAuth client and enable the Coinbase for Agents (`mcp:*`) scopes you want to expose. +2. Register both redirect URIs on that client: + - Desktop: `http://localhost:8787/callback` + - Web and Cloud Agents: `https://www.cursor.com/agents/mcp/oauth/callback` +3. In **Dashboard → Plugins → Configure**, set **Coinbase OAuth Client ID** and **Coinbase OAuth Client Secret** from that client. +4. Complete the Coinbase login when Cursor prompts. + +On a team marketplace an admin sets the client ID and secret once for everyone; each member still completes their own Coinbase login, so tool calls run against that member's account. Coinbase recommends scoping the agent to a dedicated portfolio. + +## What agents can do + +| Category | Capabilities | +| --- | --- | +| Market data | Products, tickers, order books, and candles | +| Orders | Preview, create, edit, cancel, and list orders; close positions | +| Portfolios | Balances, portfolio breakdowns, and transfers between portfolios | +| Conversions | Quote and execute USDC/USD conversions | + +The hosted runtime is the source of truth for tool names and schemas. + +## Notes + +- Orders placed through this server are live. Preview first and keep the agent in an isolated portfolio. +- This is Coinbase for Agents, not the separate Agentic Wallet / x402 payments MCP. + +## Docs + +- Coinbase for Agents: https://docs.cdp.coinbase.com/coinbase-for-agents/overview +- Server URL: https://agents.coinbase.com/mcp + +Logo is Coinbase's official mark, from the `coinbase` GitHub organization. + +## License + +MIT diff --git a/third_party/coinbase/assets/logo.png b/third_party/coinbase/assets/logo.png new file mode 100644 index 000000000..ee7dab98e Binary files /dev/null and b/third_party/coinbase/assets/logo.png differ diff --git a/third_party/coinbase/mcp.json b/third_party/coinbase/mcp.json new file mode 100644 index 000000000..9b8839e80 --- /dev/null +++ b/third_party/coinbase/mcp.json @@ -0,0 +1,11 @@ +{ + "mcpServers": { + "coinbase": { + "url": "https://agents.coinbase.com/mcp", + "auth": { + "CLIENT_ID": "${CLIENT_ID}", + "CLIENT_SECRET": "${CLIENT_SECRET}" + } + } + } +} diff --git a/third_party/daloopa/.cursor-plugin/plugin.json b/third_party/daloopa/.cursor-plugin/plugin.json new file mode 100644 index 000000000..f19e040fd --- /dev/null +++ b/third_party/daloopa/.cursor-plugin/plugin.json @@ -0,0 +1,35 @@ +{ + "name": "daloopa", + "displayName": "Daloopa", + "version": "1.0.0", + "minClientVersions": { + "cursor": "3.13.0" + }, + "description": "Pull source-linked fundamentals, KPIs, filings, and prices.", + "author": { + "name": "Cursor", + "email": "plugins@cursor.com" + }, + "homepage": "https://docs.daloopa.com/docs/daloopa-mcp", + "repository": "https://github.com/cursor/plugins", + "license": "MIT", + "logo": "assets/logo.png", + "keywords": [ + "daloopa", + "fundamentals", + "kpis", + "sec filings", + "transcripts", + "equity research", + "financial data", + "mcp" + ], + "category": "integrations", + "tags": [ + "daloopa", + "finance", + "research", + "mcp" + ], + "mcpServers": "./mcp.json" +} diff --git a/third_party/daloopa/CHANGELOG.md b/third_party/daloopa/CHANGELOG.md new file mode 100644 index 000000000..c37403cc2 --- /dev/null +++ b/third_party/daloopa/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +All notable changes to this plugin will be documented here. + +## 1.0.0 — initial release + +- Added the `daloopa` MCP server pointing at Daloopa's hosted Streamable HTTP endpoint (`https://mcp.daloopa.com/server/mcp`). +- Auth uses OAuth with Daloopa user login — no API key or client ID to configure. +- Logo: Daloopa's official mark, from the `daloopa` GitHub organization. diff --git a/third_party/daloopa/LICENSE b/third_party/daloopa/LICENSE new file mode 100644 index 000000000..ca2bba771 --- /dev/null +++ b/third_party/daloopa/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/daloopa/README.md b/third_party/daloopa/README.md new file mode 100644 index 000000000..40c17ee94 --- /dev/null +++ b/third_party/daloopa/README.md @@ -0,0 +1,61 @@ +# Daloopa + +Cursor plugin that connects agents to [Daloopa](https://docs.daloopa.com/docs/daloopa-mcp) through Daloopa's official remote [Model Context Protocol](https://modelcontextprotocol.io/) server. + +Pull source-linked fundamentals, KPIs, filings, and prices. + +## Install + +1. Open **Cursor Settings → Plugins**. +2. Search for **Daloopa**. +3. Click **Install**, then complete the Daloopa sign-in prompt. + +Or run `/add-plugin daloopa` in chat. + +## MCP + +```json +{ + "mcpServers": { + "daloopa": { + "type": "http", + "url": "https://mcp.daloopa.com/server/mcp" + } + } +} +``` + +Auth is OAuth. Cursor prompts for Daloopa sign-in when the plugin connects — there is no client ID or personal access token to configure. + +## Before you connect + +You need a Daloopa account and subscription. Coverage is 6,000+ global tickers, and every data point links back to the source filing, presentation, or transcript. + +## What agents can do + +| Category | Capabilities | +| --- | --- | +| Companies | Find companies by ticker or name and discover their available series | +| Fundamentals | Quarterly and annual values for statements, segments, and KPIs, with source links | +| Documents | List, search, and read filings, transcripts, and presentations | +| Prices | Daily OHLCV history | +| Skills | Run Daloopa's pre-built analyses such as earnings reviews and comps | + +The hosted runtime is the source of truth for tool names and schemas. + +## Notes + +- Tool calls run under the Daloopa entitlements of the user who authorizes the connection. +- A separate docs server at `https://docs.daloopa.com/mcp` searches Daloopa's documentation and is not what this plugin connects to. + +## Docs + +- Daloopa MCP: https://docs.daloopa.com/docs/daloopa-mcp +- Client integrations: https://docs.daloopa.com/docs/mcp-integrations +- Server URL: https://mcp.daloopa.com/server/mcp + +Logo is Daloopa's official mark, from the `daloopa` GitHub organization. + +## License + +MIT diff --git a/third_party/daloopa/assets/logo.png b/third_party/daloopa/assets/logo.png new file mode 100644 index 000000000..2d547938f Binary files /dev/null and b/third_party/daloopa/assets/logo.png differ diff --git a/third_party/daloopa/mcp.json b/third_party/daloopa/mcp.json new file mode 100644 index 000000000..35c9d26ca --- /dev/null +++ b/third_party/daloopa/mcp.json @@ -0,0 +1,8 @@ +{ + "mcpServers": { + "daloopa": { + "type": "http", + "url": "https://mcp.daloopa.com/server/mcp" + } + } +} diff --git a/third_party/excalidraw/.cursor-plugin/plugin.json b/third_party/excalidraw/.cursor-plugin/plugin.json new file mode 100644 index 000000000..d9699ad1b --- /dev/null +++ b/third_party/excalidraw/.cursor-plugin/plugin.json @@ -0,0 +1,35 @@ +{ + "name": "excalidraw", + "displayName": "Excalidraw", + "version": "1.0.0", + "minClientVersions": { + "cursor": "3.13.0" + }, + "description": "Draw and export hand-drawn diagrams from chat.", + "author": { + "name": "Cursor", + "email": "plugins@cursor.com" + }, + "homepage": "https://github.com/excalidraw/excalidraw-mcp", + "repository": "https://github.com/cursor/plugins", + "license": "MIT", + "logo": "assets/logo.png", + "keywords": [ + "excalidraw", + "diagrams", + "whiteboard", + "sketch", + "flowchart", + "architecture", + "mcp apps", + "mcp" + ], + "category": "integrations", + "tags": [ + "excalidraw", + "diagrams", + "productivity", + "mcp" + ], + "mcpServers": "./mcp.json" +} diff --git a/third_party/excalidraw/CHANGELOG.md b/third_party/excalidraw/CHANGELOG.md new file mode 100644 index 000000000..88ed37b98 --- /dev/null +++ b/third_party/excalidraw/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +All notable changes to this plugin will be documented here. + +## 1.0.0 — initial release + +- Added the `excalidraw` MCP server pointing at Excalidraw's hosted Streamable HTTP endpoint (`https://mcp.excalidraw.com/mcp`). +- No auth — the public server needs no credentials. +- Logo: Excalidraw's official mark, from the `excalidraw` GitHub organization. diff --git a/third_party/excalidraw/LICENSE b/third_party/excalidraw/LICENSE new file mode 100644 index 000000000..ca2bba771 --- /dev/null +++ b/third_party/excalidraw/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/excalidraw/README.md b/third_party/excalidraw/README.md new file mode 100644 index 000000000..6b5e04455 --- /dev/null +++ b/third_party/excalidraw/README.md @@ -0,0 +1,58 @@ +# Excalidraw + +Cursor plugin that connects agents to [Excalidraw](https://github.com/excalidraw/excalidraw-mcp) through Excalidraw's official remote [Model Context Protocol](https://modelcontextprotocol.io/) server. + +Draw and export hand-drawn diagrams from chat. + +## Install + +1. Open **Cursor Settings → Plugins**. +2. Search for **Excalidraw**. +3. Click **Install**. + +Or run `/add-plugin excalidraw` in chat. + +## MCP + +```json +{ + "mcpServers": { + "excalidraw": { + "type": "http", + "url": "https://mcp.excalidraw.com/mcp" + } + } +} +``` + +No authentication is required; the server covers public repositories only. + +## Before you connect + +No account is needed. The hosted server renders diagrams as interactive MCP App views in clients that support them, and can export `.excalidraw` files anywhere. + +## What agents can do + +| Category | Capabilities | +| --- | --- | +| Draw | Create a diagram view from elements the agent describes | +| Export | Export the current drawing to an `.excalidraw` file | +| Checkpoints | Save and restore drawing checkpoints within a session | + +The hosted runtime is the source of truth for tool names and schemas. + +## Notes + +- This is the open-source Excalidraw MCP server. Excalidraw+ workspaces use a separate authenticated endpoint (`https://api.excalidraw.com/api/v1/mcp`) that this plugin does not configure. +- The bare origin `https://mcp.excalidraw.com` redirects to `/mcp`; the plugin uses the final URL. + +## Docs + +- excalidraw-mcp on GitHub: https://github.com/excalidraw/excalidraw-mcp +- Server URL: https://mcp.excalidraw.com/mcp + +Logo is Excalidraw's official mark, from the `excalidraw` GitHub organization. + +## License + +MIT diff --git a/third_party/excalidraw/assets/logo.png b/third_party/excalidraw/assets/logo.png new file mode 100644 index 000000000..608b31bd9 Binary files /dev/null and b/third_party/excalidraw/assets/logo.png differ diff --git a/third_party/excalidraw/mcp.json b/third_party/excalidraw/mcp.json new file mode 100644 index 000000000..55f551ef8 --- /dev/null +++ b/third_party/excalidraw/mcp.json @@ -0,0 +1,8 @@ +{ + "mcpServers": { + "excalidraw": { + "type": "http", + "url": "https://mcp.excalidraw.com/mcp" + } + } +} diff --git a/third_party/gamma/.cursor-plugin/plugin.json b/third_party/gamma/.cursor-plugin/plugin.json new file mode 100644 index 000000000..9f1a0275c --- /dev/null +++ b/third_party/gamma/.cursor-plugin/plugin.json @@ -0,0 +1,35 @@ +{ + "name": "gamma", + "displayName": "Gamma", + "version": "1.0.0", + "minClientVersions": { + "cursor": "3.13.0" + }, + "description": "Generate presentations, documents, and webpages.", + "author": { + "name": "Cursor", + "email": "plugins@cursor.com" + }, + "homepage": "https://developers.gamma.app/mcp/gamma-mcp-server.md", + "repository": "https://github.com/cursor/plugins", + "license": "MIT", + "logo": "assets/logo.png", + "keywords": [ + "gamma", + "presentations", + "slides", + "documents", + "webpages", + "design", + "export", + "mcp" + ], + "category": "integrations", + "tags": [ + "gamma", + "presentations", + "productivity", + "mcp" + ], + "mcpServers": "./mcp.json" +} diff --git a/third_party/gamma/CHANGELOG.md b/third_party/gamma/CHANGELOG.md new file mode 100644 index 000000000..4af93ece5 --- /dev/null +++ b/third_party/gamma/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +All notable changes to this plugin will be documented here. + +## 1.0.0 — initial release + +- Added the `gamma` MCP server pointing at Gamma's hosted Streamable HTTP endpoint (`https://mcp.gamma.app/mcp`). +- Auth uses OAuth with Gamma user login — no API key or client ID to configure. +- Logo: Gamma's official mark, from the `gamma-app` GitHub organization. diff --git a/third_party/gamma/LICENSE b/third_party/gamma/LICENSE new file mode 100644 index 000000000..ca2bba771 --- /dev/null +++ b/third_party/gamma/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/gamma/README.md b/third_party/gamma/README.md new file mode 100644 index 000000000..57a079154 --- /dev/null +++ b/third_party/gamma/README.md @@ -0,0 +1,60 @@ +# Gamma + +Cursor plugin that connects agents to [Gamma](https://developers.gamma.app/mcp/gamma-mcp-server.md) through Gamma's official remote [Model Context Protocol](https://modelcontextprotocol.io/) server. + +Generate presentations, documents, and webpages. + +## Install + +1. Open **Cursor Settings → Plugins**. +2. Search for **Gamma**. +3. Click **Install**, then complete the Gamma sign-in prompt. + +Or run `/add-plugin gamma` in chat. + +## MCP + +```json +{ + "mcpServers": { + "gamma": { + "type": "http", + "url": "https://mcp.gamma.app/mcp" + } + } +} +``` + +Auth is OAuth. Cursor prompts for Gamma sign-in when the plugin connects — there is no client ID or personal access token to configure. + +## Before you connect + +You need a Gamma account. Generations consume credits from that account. + +## What agents can do + +| Category | Capabilities | +| --- | --- | +| Generate | Presentations, documents, webpages, and social posts from a prompt, outline, or template | +| Export | PDF, PPTX, and PNG exports | +| Browse | List and read existing Gammas, themes, and folders | +| Analytics | Views and comments on existing Gammas | + +The hosted runtime is the source of truth for tool names and schemas. + +## Notes + +- Generation is asynchronous: tools return a generation id that the agent polls until complete. +- Auth is OAuth 2.0 with Dynamic Client Registration. + +## Docs + +- Gamma MCP server: https://developers.gamma.app/mcp/gamma-mcp-server.md +- Tools reference: https://developers.gamma.app/mcp/mcp-tools-reference.md +- Server URL: https://mcp.gamma.app/mcp + +Logo is Gamma's official mark, from the `gamma-app` GitHub organization. + +## License + +MIT diff --git a/third_party/gamma/assets/logo.png b/third_party/gamma/assets/logo.png new file mode 100644 index 000000000..7fa47a5f2 Binary files /dev/null and b/third_party/gamma/assets/logo.png differ diff --git a/third_party/gamma/mcp.json b/third_party/gamma/mcp.json new file mode 100644 index 000000000..3d61aa7af --- /dev/null +++ b/third_party/gamma/mcp.json @@ -0,0 +1,8 @@ +{ + "mcpServers": { + "gamma": { + "type": "http", + "url": "https://mcp.gamma.app/mcp" + } + } +} diff --git a/third_party/google-cloud-bigquery/.cursor-plugin/plugin.json b/third_party/google-cloud-bigquery/.cursor-plugin/plugin.json new file mode 100644 index 000000000..37ffa2837 --- /dev/null +++ b/third_party/google-cloud-bigquery/.cursor-plugin/plugin.json @@ -0,0 +1,36 @@ +{ + "name": "google-cloud-bigquery", + "displayName": "Google Cloud BigQuery", + "version": "1.0.0", + "minClientVersions": { + "cursor": "3.13.0" + }, + "description": "Explore datasets and tables and run SQL queries.", + "author": { + "name": "Cursor", + "email": "plugins@cursor.com" + }, + "homepage": "https://docs.cloud.google.com/bigquery/docs/use-bigquery-mcp", + "repository": "https://github.com/cursor/plugins", + "license": "MIT", + "logo": "assets/logo.png", + "keywords": [ + "google cloud bigquery", + "google cloud", + "bigquery", + "sql", + "analytics", + "data warehouse", + "datasets", + "mcp" + ], + "category": "integrations", + "tags": [ + "bigquery", + "google cloud", + "analytics", + "sql", + "mcp" + ], + "mcpServers": "./mcp.json" +} diff --git a/third_party/google-cloud-bigquery/CHANGELOG.md b/third_party/google-cloud-bigquery/CHANGELOG.md new file mode 100644 index 000000000..1789565cd --- /dev/null +++ b/third_party/google-cloud-bigquery/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +All notable changes to this plugin will be documented here. + +## 1.0.0 — initial release + +- Added the `google-cloud-bigquery` MCP server pointing at Google Cloud BigQuery's hosted Streamable HTTP endpoint (`https://bigquery.googleapis.com/mcp`). +- Auth uses OAuth with Google Cloud BigQuery user login — no API key or client ID to configure. +- Logo: Official BigQuery product icon from Google Cloud's architecture icon set, on a padded white tile. diff --git a/third_party/google-cloud-bigquery/LICENSE b/third_party/google-cloud-bigquery/LICENSE new file mode 100644 index 000000000..ca2bba771 --- /dev/null +++ b/third_party/google-cloud-bigquery/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/google-cloud-bigquery/README.md b/third_party/google-cloud-bigquery/README.md new file mode 100644 index 000000000..bedfbfe19 --- /dev/null +++ b/third_party/google-cloud-bigquery/README.md @@ -0,0 +1,61 @@ +# Google Cloud BigQuery + +Cursor plugin that connects agents to [Google Cloud BigQuery](https://docs.cloud.google.com/bigquery/docs/use-bigquery-mcp) through Google Cloud BigQuery's official remote [Model Context Protocol](https://modelcontextprotocol.io/) server. + +Explore datasets and tables and run SQL queries. + +## Install + +1. Open **Cursor Settings → Plugins**. +2. Search for **Google Cloud BigQuery**. +3. Click **Install**, then complete the Google Cloud BigQuery sign-in prompt. + +Or run `/add-plugin google-cloud-bigquery` in chat. + +## MCP + +```json +{ + "mcpServers": { + "google-cloud-bigquery": { + "type": "http", + "url": "https://bigquery.googleapis.com/mcp" + } + } +} +``` + +Auth is OAuth. Cursor prompts for Google Cloud BigQuery sign-in when the plugin connects — there is no client ID or personal access token to configure. + +## Before you connect + +You need a Google Cloud project with the BigQuery API enabled, and your Google account needs the MCP Tool User role (`roles/mcp.toolUser`) plus BigQuery Job User and Data Viewer on that project. + +## What agents can do + +| Category | Capabilities | +| --- | --- | +| Explore | List datasets and tables and read their metadata and schemas | +| Query | Run read-only SQL, including BigQuery ML functions | +| Write | Run DML and DDL when the account allows it | +| Jobs | Poll results and cancel running query jobs | + +The hosted runtime is the source of truth for tool names and schemas. + +## Notes + +- Queries are billed to the project id passed to the tool. +- Admins can block the write-capable `execute_sql` tool with an IAM deny policy while leaving read-only queries available. +- Grok also offers this connector with service-identity auth; this plugin configures only the user OAuth flow. + +## Docs + +- Use the BigQuery MCP server: https://docs.cloud.google.com/bigquery/docs/use-bigquery-mcp +- Tools reference: https://docs.cloud.google.com/bigquery/docs/reference/mcp +- Server URL: https://bigquery.googleapis.com/mcp + +Logo is the official BigQuery product icon from Google Cloud's architecture icon set, on a padded white tile. + +## License + +MIT diff --git a/third_party/google-cloud-bigquery/assets/logo.png b/third_party/google-cloud-bigquery/assets/logo.png new file mode 100644 index 000000000..cb2ba563c Binary files /dev/null and b/third_party/google-cloud-bigquery/assets/logo.png differ diff --git a/third_party/google-cloud-bigquery/mcp.json b/third_party/google-cloud-bigquery/mcp.json new file mode 100644 index 000000000..4068482cc --- /dev/null +++ b/third_party/google-cloud-bigquery/mcp.json @@ -0,0 +1,8 @@ +{ + "mcpServers": { + "google-cloud-bigquery": { + "type": "http", + "url": "https://bigquery.googleapis.com/mcp" + } + } +} diff --git a/third_party/interactive-brokers/.cursor-plugin/plugin.json b/third_party/interactive-brokers/.cursor-plugin/plugin.json new file mode 100644 index 000000000..1b068d64f --- /dev/null +++ b/third_party/interactive-brokers/.cursor-plugin/plugin.json @@ -0,0 +1,35 @@ +{ + "name": "interactive-brokers", + "displayName": "Interactive Brokers", + "version": "1.0.0", + "minClientVersions": { + "cursor": "3.13.0" + }, + "description": "Review positions, balances, P&L, and draft trade instructions.", + "author": { + "name": "Cursor", + "email": "plugins@cursor.com" + }, + "homepage": "https://www.interactivebrokers.com/en/trading/ai-integrations.php", + "repository": "https://github.com/cursor/plugins", + "license": "MIT", + "logo": "assets/logo.png", + "keywords": [ + "interactive brokers", + "ibkr", + "brokerage", + "trading", + "portfolio", + "positions", + "market data", + "mcp" + ], + "category": "integrations", + "tags": [ + "ibkr", + "finance", + "trading", + "mcp" + ], + "mcpServers": "./mcp.json" +} diff --git a/third_party/interactive-brokers/CHANGELOG.md b/third_party/interactive-brokers/CHANGELOG.md new file mode 100644 index 000000000..6bb30e270 --- /dev/null +++ b/third_party/interactive-brokers/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +All notable changes to this plugin will be documented here. + +## 1.0.0 — initial release + +- Added the `interactive-brokers` MCP server pointing at Interactive Brokers's hosted Streamable HTTP endpoint (`https://api.ibkr.com/v1/api/mcp-public`). +- Auth uses OAuth with Interactive Brokers user login — no API key or client ID to configure. +- Logo: Interactive Brokers's official mark, from the icon Interactive Brokers publishes for its connector, on a 192×192 tile. diff --git a/third_party/interactive-brokers/LICENSE b/third_party/interactive-brokers/LICENSE new file mode 100644 index 000000000..ca2bba771 --- /dev/null +++ b/third_party/interactive-brokers/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/interactive-brokers/README.md b/third_party/interactive-brokers/README.md new file mode 100644 index 000000000..4ce4d9521 --- /dev/null +++ b/third_party/interactive-brokers/README.md @@ -0,0 +1,60 @@ +# Interactive Brokers + +Cursor plugin that connects agents to [Interactive Brokers](https://www.interactivebrokers.com/en/trading/ai-integrations.php) through Interactive Brokers's official remote [Model Context Protocol](https://modelcontextprotocol.io/) server. + +Review positions, balances, P&L, and draft trade instructions. + +## Install + +1. Open **Cursor Settings → Plugins**. +2. Search for **Interactive Brokers**. +3. Click **Install**, then complete the Interactive Brokers sign-in prompt. + +Or run `/add-plugin interactive-brokers` in chat. + +## MCP + +```json +{ + "mcpServers": { + "interactive-brokers": { + "type": "http", + "url": "https://api.ibkr.com/v1/api/mcp-public" + } + } +} +``` + +Auth is OAuth. Cursor prompts for Interactive Brokers sign-in when the plugin connects — there is no client ID or personal access token to configure. + +## Before you connect + +You need an Interactive Brokers account. You authorize one specific account during sign-in. Not available to clients in India or Japan. + +## What agents can do + +| Category | Capabilities | +| --- | --- | +| Accounts | Balances, summaries, positions, and portfolio allocation | +| Activity | Orders, trades, and historical transactions | +| Market data | Price snapshots and history; contract search | +| Instructions | Draft trade instructions for review in IBKR's AI Instructions tab | + +The hosted runtime is the source of truth for tool names and schemas. + +## Notes + +- Trade instructions never become live orders automatically; you review and submit them inside an IBKR platform. +- IBKR recommends the `mcp-public` endpoint for custom clients; Grok's catalog lists `/mcp`, which shares the same authorization server. +- Revoke access from **Client Portal → Settings → Manage Third-Party Consents**. + +## Docs + +- IBKR AI integrations: https://www.interactivebrokers.com/en/trading/ai-integrations.php +- Server URL: https://api.ibkr.com/v1/api/mcp-public + +Logo is Interactive Brokers's official mark. + +## License + +MIT diff --git a/third_party/interactive-brokers/assets/logo.png b/third_party/interactive-brokers/assets/logo.png new file mode 100644 index 000000000..41b7b5f57 Binary files /dev/null and b/third_party/interactive-brokers/assets/logo.png differ diff --git a/third_party/interactive-brokers/mcp.json b/third_party/interactive-brokers/mcp.json new file mode 100644 index 000000000..9160d5348 --- /dev/null +++ b/third_party/interactive-brokers/mcp.json @@ -0,0 +1,8 @@ +{ + "mcpServers": { + "interactive-brokers": { + "type": "http", + "url": "https://api.ibkr.com/v1/api/mcp-public" + } + } +} diff --git a/third_party/meltwater/.cursor-plugin/plugin.json b/third_party/meltwater/.cursor-plugin/plugin.json new file mode 100644 index 000000000..4a926181e --- /dev/null +++ b/third_party/meltwater/.cursor-plugin/plugin.json @@ -0,0 +1,35 @@ +{ + "name": "meltwater", + "displayName": "Meltwater", + "version": "1.0.0", + "minClientVersions": { + "cursor": "3.13.0" + }, + "description": "Search media and social mentions and pull analytics.", + "author": { + "name": "Cursor", + "email": "plugins@cursor.com" + }, + "homepage": "https://developer.meltwater.com/guides/meltwater-mcp/overview", + "repository": "https://github.com/cursor/plugins", + "license": "MIT", + "logo": "assets/logo.png", + "keywords": [ + "meltwater", + "media monitoring", + "pr", + "social listening", + "mentions", + "sentiment", + "saved searches", + "mcp" + ], + "category": "integrations", + "tags": [ + "meltwater", + "media", + "pr", + "mcp" + ], + "mcpServers": "./mcp.json" +} diff --git a/third_party/meltwater/CHANGELOG.md b/third_party/meltwater/CHANGELOG.md new file mode 100644 index 000000000..81440a306 --- /dev/null +++ b/third_party/meltwater/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +All notable changes to this plugin will be documented here. + +## 1.0.0 — initial release + +- Added the `meltwater` MCP server pointing at Meltwater's hosted Streamable HTTP endpoint (`https://api.meltwater.com/v2/mcp`). +- Auth uses OAuth with Meltwater user login — no API key or client ID to configure. +- Logo: Meltwater's official mark, from the icon Meltwater publishes for its connector, on a 192×192 tile. diff --git a/third_party/meltwater/LICENSE b/third_party/meltwater/LICENSE new file mode 100644 index 000000000..ca2bba771 --- /dev/null +++ b/third_party/meltwater/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/meltwater/README.md b/third_party/meltwater/README.md new file mode 100644 index 000000000..b31da7400 --- /dev/null +++ b/third_party/meltwater/README.md @@ -0,0 +1,60 @@ +# Meltwater + +Cursor plugin that connects agents to [Meltwater](https://developer.meltwater.com/guides/meltwater-mcp/overview) through Meltwater's official remote [Model Context Protocol](https://modelcontextprotocol.io/) server. + +Search media and social mentions and pull analytics. + +## Install + +1. Open **Cursor Settings → Plugins**. +2. Search for **Meltwater**. +3. Click **Install**, then complete the Meltwater sign-in prompt. + +Or run `/add-plugin meltwater` in chat. + +## MCP + +```json +{ + "mcpServers": { + "meltwater": { + "type": "http", + "url": "https://api.meltwater.com/v2/mcp" + } + } +} +``` + +Auth is OAuth. Cursor prompts for Meltwater sign-in when the plugin connects — there is no client ID or API token to configure. + +## Before you connect + +You need a Meltwater subscription that includes the Meltwater MCP package. Available tools depend on the products in your subscription. + +## What agents can do + +| Category | Capabilities | +| --- | --- | +| Your assets | Find saved searches and tags configured in Meltwater | +| Mentions | Retrieve news and social documents for a saved search | +| Analytics | Volume, sentiment, top sources, and themes | +| Queries | Generate a query when no saved search exists | + +The hosted runtime is the source of truth for tool names and schemas. + +## Notes + +- Meltwater's server advertises standard MCP OAuth with dynamic client registration; its public docs still describe API-key auth, but the OAuth flow is live. +- This is Meltwater MCP (`/v2/mcp`), not the higher-level Mira API endpoint at `/mcp`. + +## Docs + +- Meltwater MCP overview: https://developer.meltwater.com/guides/meltwater-mcp/overview +- Connecting: https://developer.meltwater.com/guides/meltwater-mcp/connecting +- Server URL: https://api.meltwater.com/v2/mcp + +Logo is Meltwater's official mark. + +## License + +MIT diff --git a/third_party/meltwater/assets/logo.png b/third_party/meltwater/assets/logo.png new file mode 100644 index 000000000..9538ead04 Binary files /dev/null and b/third_party/meltwater/assets/logo.png differ diff --git a/third_party/meltwater/mcp.json b/third_party/meltwater/mcp.json new file mode 100644 index 000000000..8d77a11b6 --- /dev/null +++ b/third_party/meltwater/mcp.json @@ -0,0 +1,8 @@ +{ + "mcpServers": { + "meltwater": { + "type": "http", + "url": "https://api.meltwater.com/v2/mcp" + } + } +} diff --git a/third_party/sp-global/.cursor-plugin/plugin.json b/third_party/sp-global/.cursor-plugin/plugin.json new file mode 100644 index 000000000..ee79402bb --- /dev/null +++ b/third_party/sp-global/.cursor-plugin/plugin.json @@ -0,0 +1,35 @@ +{ + "name": "sp-global", + "displayName": "S&P Global", + "version": "1.0.0", + "minClientVersions": { + "cursor": "3.13.0" + }, + "description": "Query S&P Capital IQ financials, prices, and transcripts.", + "author": { + "name": "Cursor", + "email": "plugins@cursor.com" + }, + "homepage": "https://docs.kensho.com/llmreadyapi/overview", + "repository": "https://github.com/cursor/plugins", + "license": "MIT", + "logo": "assets/logo.png", + "keywords": [ + "sp global", + "kensho", + "kfinance", + "capital iq", + "financials", + "market data", + "earnings transcripts", + "mcp" + ], + "category": "integrations", + "tags": [ + "s&p global", + "kensho", + "finance", + "mcp" + ], + "mcpServers": "./mcp.json" +} diff --git a/third_party/sp-global/CHANGELOG.md b/third_party/sp-global/CHANGELOG.md new file mode 100644 index 000000000..d46309737 --- /dev/null +++ b/third_party/sp-global/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +All notable changes to this plugin will be documented here. + +## 1.0.0 — initial release + +- Added the `sp-global` MCP server pointing at S&P Global's hosted Streamable HTTP endpoint (`https://kfinance.kensho.com/integrations/mcp`). +- Auth uses OAuth with S&P Global user login — no API key or client ID to configure. +- Logo: S&P Global's official mark (black rule over red block), redrawn at 192×192 from the icon published on marketplace.spglobal.com. diff --git a/third_party/sp-global/LICENSE b/third_party/sp-global/LICENSE new file mode 100644 index 000000000..ca2bba771 --- /dev/null +++ b/third_party/sp-global/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/sp-global/README.md b/third_party/sp-global/README.md new file mode 100644 index 000000000..2858e27b7 --- /dev/null +++ b/third_party/sp-global/README.md @@ -0,0 +1,60 @@ +# S&P Global + +Cursor plugin that connects agents to [S&P Global](https://docs.kensho.com/llmreadyapi/overview) through S&P Global's official remote [Model Context Protocol](https://modelcontextprotocol.io/) server. + +Query S&P Capital IQ financials, prices, and transcripts. + +## Install + +1. Open **Cursor Settings → Plugins**. +2. Search for **S&P Global**. +3. Click **Install**, then complete the S&P Global sign-in prompt. + +Or run `/add-plugin sp-global` in chat. + +## MCP + +```json +{ + "mcpServers": { + "sp-global": { + "type": "http", + "url": "https://kfinance.kensho.com/integrations/mcp" + } + } +} +``` + +Auth is OAuth. Cursor prompts for S&P Global sign-in when the plugin connects — there is no client ID or personal access token to configure. + +## Before you connect + +You need an active S&P Global Market Intelligence subscription or trial for the Kensho LLM-ready API. + +## What agents can do + +| Category | Capabilities | +| --- | --- | +| Companies | Resolve companies by ticker, ISIN, or CUSIP and read profiles | +| Financials | Statements and 200+ line items from S&P Capital IQ | +| Prices | Historical prices, volumes, market cap, and enterprise value | +| Research | Earnings call transcripts, business relationships, M&A, and estimates | + +The hosted runtime is the source of truth for tool names and schemas. + +## Notes + +- Tool calls run under the S&P Global entitlements of the user who authorizes the connection. +- Kensho also ships the open-source `kensho-kfinance` package for a local server; this plugin uses the hosted server only. + +## Docs + +- Kensho LLM-ready API: https://docs.kensho.com/llmreadyapi/overview +- kfinance on GitHub: https://github.com/kensho-technologies/kfinance +- Server URL: https://kfinance.kensho.com/integrations/mcp + +Logo is S&P Global's official mark (black rule over red block), redrawn at 192×192 from the icon published on marketplace.spglobal.com. + +## License + +MIT diff --git a/third_party/sp-global/assets/logo.png b/third_party/sp-global/assets/logo.png new file mode 100644 index 000000000..0c566f750 Binary files /dev/null and b/third_party/sp-global/assets/logo.png differ diff --git a/third_party/sp-global/mcp.json b/third_party/sp-global/mcp.json new file mode 100644 index 000000000..48ce41bc1 --- /dev/null +++ b/third_party/sp-global/mcp.json @@ -0,0 +1,8 @@ +{ + "mcpServers": { + "sp-global": { + "type": "http", + "url": "https://kfinance.kensho.com/integrations/mcp" + } + } +} diff --git a/third_party/webull/.cursor-plugin/plugin.json b/third_party/webull/.cursor-plugin/plugin.json new file mode 100644 index 000000000..59fa82fa4 --- /dev/null +++ b/third_party/webull/.cursor-plugin/plugin.json @@ -0,0 +1,35 @@ +{ + "name": "webull", + "displayName": "Webull", + "version": "1.0.0", + "minClientVersions": { + "cursor": "3.13.0" + }, + "description": "View accounts, positions, orders, watchlists, and market data.", + "author": { + "name": "Cursor", + "email": "plugins@cursor.com" + }, + "homepage": "https://developer.webull.com/apis/docs/AI-friendly-Resources/mcp/", + "repository": "https://github.com/cursor/plugins", + "license": "MIT", + "logo": "assets/logo.png", + "keywords": [ + "webull", + "brokerage", + "trading", + "portfolio", + "quotes", + "watchlists", + "market data", + "mcp" + ], + "category": "integrations", + "tags": [ + "webull", + "finance", + "trading", + "mcp" + ], + "mcpServers": "./mcp.json" +} diff --git a/third_party/webull/CHANGELOG.md b/third_party/webull/CHANGELOG.md new file mode 100644 index 000000000..9997049a3 --- /dev/null +++ b/third_party/webull/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +All notable changes to this plugin will be documented here. + +## 1.0.0 — initial release + +- Added the `webull` MCP server pointing at Webull's hosted Streamable HTTP endpoint (`https://api.webull.com/mcp`). +- Auth uses OAuth with Webull user login — no API key or client ID to configure. +- Logo: Webull's official mark, from the icon Webull publishes for its connector, on a 192×192 tile. diff --git a/third_party/webull/LICENSE b/third_party/webull/LICENSE new file mode 100644 index 000000000..ca2bba771 --- /dev/null +++ b/third_party/webull/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/webull/README.md b/third_party/webull/README.md new file mode 100644 index 000000000..f63f4e144 --- /dev/null +++ b/third_party/webull/README.md @@ -0,0 +1,60 @@ +# Webull + +Cursor plugin that connects agents to [Webull](https://developer.webull.com/apis/docs/AI-friendly-Resources/mcp/) through Webull's official remote [Model Context Protocol](https://modelcontextprotocol.io/) server. + +View accounts, positions, orders, watchlists, and market data. + +## Install + +1. Open **Cursor Settings → Plugins**. +2. Search for **Webull**. +3. Click **Install**, then complete the Webull sign-in prompt. + +Or run `/add-plugin webull` in chat. + +## MCP + +```json +{ + "mcpServers": { + "webull": { + "type": "http", + "url": "https://api.webull.com/mcp" + } + } +} +``` + +Auth is OAuth. Cursor prompts for Webull sign-in when the plugin connects — there is no client ID or personal access token to configure. + +## Before you connect + +You need a Webull account. During sign-in you choose which accounts and capability groups (account info, order query, market data, security master) to expose. + +## What agents can do + +| Category | Capabilities | +| --- | --- | +| Accounts | Balances, account list, and positions | +| Orders | Open orders, order history, and order detail | +| Market data | Stocks, crypto, futures, and event contracts: quotes, bars, ticks, rankings | +| Research | Company profiles, analyst ratings, filings, financial statements, and fund data | +| Watchlists | Create and manage watchlists | + +The hosted runtime is the source of truth for tool names and schemas. + +## Notes + +- The hosted server is read-only for trading: order placement, modification, and cancellation are only in Webull's local MCP server. +- Hong Kong accounts use a separate regional endpoint that this plugin does not configure. + +## Docs + +- Webull Cloud MCP: https://developer.webull.com/apis/docs/AI-friendly-Resources/mcp/ +- Server URL: https://api.webull.com/mcp + +Logo is Webull's official mark. + +## License + +MIT diff --git a/third_party/webull/assets/logo.png b/third_party/webull/assets/logo.png new file mode 100644 index 000000000..2d28680c6 Binary files /dev/null and b/third_party/webull/assets/logo.png differ diff --git a/third_party/webull/mcp.json b/third_party/webull/mcp.json new file mode 100644 index 000000000..9c8d94418 --- /dev/null +++ b/third_party/webull/mcp.json @@ -0,0 +1,8 @@ +{ + "mcpServers": { + "webull": { + "type": "http", + "url": "https://api.webull.com/mcp" + } + } +}