feat(third_party): add S&P Global plugin

This commit is contained in:
Minu Palaniappan
2026-09-10 13:14:47 -07:00
committed by Minu Palaniappan
parent 4ceb6bb363
commit 06004ec1f0
8 changed files with 139 additions and 0 deletions
+5
View File
@@ -372,6 +372,11 @@
"name": "webull",
"source": "third_party/webull",
"description": "View accounts, positions, orders, watchlists, and market data."
},
{
"name": "sp-global",
"source": "third_party/sp-global",
"description": "Query S&P Capital IQ financials, prices, and transcripts."
}
]
}
+1
View File
@@ -75,6 +75,7 @@ Official Cursor plugins for popular developer tools, frameworks, and SaaS produc
| `teams` | [Teams](third_party/teams/) | Cursor | Productivity | Search, read, and send Microsoft Teams chats and channel messages. |
| `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. |
Author values match each plugins `plugin.json` `author.name` (Cursor lists `plugins@cursor.com` in the manifest).
## Repository structure
+35
View File
@@ -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"
}
+9
View File
@@ -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.
+21
View File
@@ -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.
+60
View File
@@ -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
Binary file not shown.

After

Width:  |  Height:  |  Size: 630 B

+8
View File
@@ -0,0 +1,8 @@
{
"mcpServers": {
"sp-global": {
"type": "http",
"url": "https://kfinance.kensho.com/integrations/mcp"
}
}
}