mirror of
https://github.com/cursor/plugins.git
synced 2026-09-14 20:00:00 +08:00
Use mcp-remote bridge for ZoomInfo MCP registration
ZoomInfo's hosted server rejects dynamic client registration when the redirect URI uses Cursor's cursor:// scheme, so the native HTTP OAuth flow cannot complete and sign-in fails after install. Register the server through the mcp-remote stdio bridge instead, matching ZoomInfo's official Cursor plugin configuration.
This commit is contained in:
Vendored
+12
-3
@@ -18,14 +18,23 @@ Or run `/add-plugin zoominfo` in chat.
|
||||
{
|
||||
"mcpServers": {
|
||||
"zoominfo": {
|
||||
"type": "http",
|
||||
"url": "https://mcp.zoominfo.com/mcp"
|
||||
"command": "npx",
|
||||
"args": [
|
||||
"-y",
|
||||
"mcp-remote@0.1.38",
|
||||
"https://mcp.zoominfo.com/mcp",
|
||||
"46818",
|
||||
"--static-oauth-client-metadata",
|
||||
"{\"scope\":\"openid profile email offline_access zi_api zi_mcp api:data:mcp\"}"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
Auth is OAuth 2.0 against ZoomInfo, including organization SSO. Cursor prompts for ZoomInfo sign-in when the plugin connects — there is no API key to configure.
|
||||
ZoomInfo's server does not yet complete OAuth discovery with Cursor's native HTTP client, so the plugin connects through the `mcp-remote` stdio bridge, which runs the OAuth flow locally. This needs Node.js (`npx`) on your machine.
|
||||
|
||||
Auth is OAuth 2.0 against ZoomInfo, including organization SSO. The bridge opens ZoomInfo sign-in in your browser on first connect and reuses cached tokens afterwards — there is no API key to configure.
|
||||
|
||||
## Before you connect
|
||||
|
||||
|
||||
Vendored
+9
-2
@@ -1,8 +1,15 @@
|
||||
{
|
||||
"mcpServers": {
|
||||
"zoominfo": {
|
||||
"type": "http",
|
||||
"url": "https://mcp.zoominfo.com/mcp"
|
||||
"command": "npx",
|
||||
"args": [
|
||||
"-y",
|
||||
"mcp-remote@0.1.38",
|
||||
"https://mcp.zoominfo.com/mcp",
|
||||
"46818",
|
||||
"--static-oauth-client-metadata",
|
||||
"{\"scope\":\"openid profile email offline_access zi_api zi_mcp api:data:mcp\"}"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user