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 @@ -382,6 +382,11 @@
"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."
}
]
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ Official Cursor plugins for popular developer tools, frameworks, and SaaS produc
| `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. |
| `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. |
Author values match each plugin’s `plugin.json` `author.name` (Cursor lists `plugins@cursor.com` in the manifest).

## Repository structure
Expand Down
35 changes: 35 additions & 0 deletions third_party/meltwater/.cursor-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -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"
}
9 changes: 9 additions & 0 deletions third_party/meltwater/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

- 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.
21 changes: 21 additions & 0 deletions third_party/meltwater/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.
60 changes: 60 additions & 0 deletions third_party/meltwater/README.md
Original file line number Diff line number Diff line change
@@ -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
Binary file added third_party/meltwater/assets/logo.png
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/meltwater/mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"mcpServers": {
"meltwater": {
"type": "http",
"url": "https://api.meltwater.com/v2/mcp"
}
}
}
Loading