-
Notifications
You must be signed in to change notification settings - Fork 659
feat(third_party): add 9 publicly-released Grok connectors as third-party MCP plugins #345
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
8e8d6ad
feat(third_party): add 12 Grok connectors as third-party MCP plugins
95ac59c
fix(marketplace): sync new plugin descriptions with their manifests
f12224d
Drop connectors Grok never released publicly (Axiom, Bigdata.com, Cal…
03275b0
Add Excalidraw and Daloopa third-party MCP plugins
c412955
Fix BigQuery, Gamma, and S&P Global logos
72cc418
Fix Meltwater and Coinbase auth to match what their servers actually …
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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" | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 `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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| { | ||
| "mcpServers": { | ||
| "coinbase": { | ||
| "url": "https://agents.coinbase.com/mcp", | ||
| "auth": { | ||
| "CLIENT_ID": "${CLIENT_ID}", | ||
| "CLIENT_SECRET": "${CLIENT_SECRET}" | ||
| } | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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" | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 `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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| { | ||
| "mcpServers": { | ||
| "daloopa": { | ||
| "type": "http", | ||
| "url": "https://mcp.daloopa.com/server/mcp" | ||
| } | ||
| } | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Coinbase OAuth clients are unobtainable
High Severity · Logic Bug
The plugin now requires
CLIENT_IDandCLIENT_SECRETfrom a Coinbase Developer Platform OAuth app. Coinbase restricts OAuth client creation to approved partners, and Coinbase for Agents documents URL-only sign-in for allowlisted harnesses, not a BYO app. Typical marketplace users cannot finish Setup, so the plugin never connects.Additional Locations (2)
third_party/coinbase/mcp.json#L4-L8third_party/coinbase/README.md#L30-L40Reviewed by Cursor Bugbot for commit 72cc418. Configure here.