# SEC Corporate Events MCP — M\&A & Buybacks for AI Agents (`nexgendata/sec-corporate-events-mcp`) Actor

MCP server exposing SEC corporate-event tracking — M\&A, buybacks, delistings, going-private and exec comp — as 10 agent tools. Connect Claude, Cursor, n8n. Not investment advice.

- **URL**: https://apify.com/nexgendata/sec-corporate-events-mcp.md
- **Developed by:** [NexGenData](https://apify.com/nexgendata) (community)
- **Categories:** MCP servers, Developer tools, AI
- **Stats:** 10 total users, 2 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $100.00 / 1,000 tool calls

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## SEC Corporate Events MCP — M\&A, Buybacks, IPO Tools

Give any AI agent — Claude, Cursor, ChatGPT, or a custom LangChain pipeline — ten clean SEC corporate-event tools over a single MCP connection. Instead of wiring up ten EDGAR scrapers and babysitting form-type quirks (a tender offer can surface as SC TO-T, SC 14D9, or SC 13E3), you connect once and call `track_tender_offers_ma`, `track_stock_buybacks`, `track_ipo_prospectuses`, `track_going_private`, `track_activist_proxies`, and five more. Every tool returns the same `{summary, structuredContent}` envelope with company, CIK, form, filing date, accession, and a direct sec.gov link — pay-per-call, no subscription, no EDGAR plumbing.

### The 10 tools

- `track_stock_buybacks` — share repurchase disclosures
- `track_tender_offers_ma` — tender offers and M\&A (SC TO-T, SC 14D9, SC 13E3)
- `track_ipo_prospectuses` — IPO prospectuses and registrations
- `track_delistings` — exchange delistings
- `track_going_private` — going-private transactions
- `track_comment_letters` — SEC staff comment letters
- `track_exec_comp` — executive compensation disclosures
- `track_new_insiders` — newly reporting insiders
- `track_foreign_issuers` — foreign issuer filings (20-F, 6-K, 40-F)
- `track_activist_proxies` — activist and proxy-contest filings

This is a streamable-HTTP MCP server; the actor input schema is intentionally empty (you call the tools from your MCP client).

### Use cases

- **Agent-built deal-flow digest** — combine `track_tender_offers_ma`, `track_going_private`, `track_ipo_prospectuses`.
- **Conviction screen** — pair `track_stock_buybacks` with `track_new_insiders`.
- **Short-thesis early warning** — `track_comment_letters` plus `track_delistings`.
- **Governance / activism monitor** — `track_activist_proxies` and `track_exec_comp`.
- **Foreign-issuer watchlist** — `track_foreign_issuers` for 20-F / 6-K / 40-F.

### Sample call

```json
{
  "name": "track_tender_offers_ma",
  "arguments": {
    "criteria": { "startdt": "2026-01-01", "enddt": "2026-06-25" },
    "limit": 50
  }
}
```

### Sample response

```json
{
  "tool": "Tender Offers & M&A",
  "count": 2,
  "total_available": 37,
  "results": [
    {
      "company": "EXAMPLE TARGET CORP",
      "cik": "0001234567",
      "form": "SC TO-T",
      "filed": "2026-06-18",
      "accession": "0001193125-26-198765",
      "url": "https://www.sec.gov/Archives/edgar/data/1234567/000119312526198765.txt",
      "filer": "ACQUIRER HOLDINGS LP"
    }
  ]
}
```

### FAQ

**Is there an MCP server for SEC filings?**
Yes — this one, focused on corporate events (deals, buybacks, IPOs, activism). For a broader filings set (13F, Form 4, etc.), see the companion Regulatory Filings MCP.

**Do I need an EDGAR account or API key?**
No; only an Apify token. EDGAR access is handled server-side.

**How much does it cost vs a terminal?**
Pay-per-call (about $0.10 per tool call); roughly 200 queries a month is far below the cost of a four-figure terminal.

**Which AI clients work?**
Any MCP client — Claude Desktop, Cursor, ChatGPT, custom LangChain/LlamaIndex.

**How fresh is the data?**
Queried live at call time, as soon as filings are indexed in EDGAR full-text search.

### Related actors

- https://apify.com/nexgendata/sec-form-8k-material-events-scraper?fpr=2ayu9b
- https://apify.com/nexgendata/sec-8k-event-monitor?fpr=2ayu9b
- https://apify.com/nexgendata/sec-edgar-8k-filings?fpr=2ayu9b
- https://apify.com/nexgendata/sec-event-router?fpr=2ayu9b
- https://apify.com/nexgendata/corporate-actions-tracker?fpr=2ayu9b

# Actor input Schema

## Actor input object example

```json
{}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("nexgendata/sec-corporate-events-mcp").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("nexgendata/sec-corporate-events-mcp").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call nexgendata/sec-corporate-events-mcp --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=nexgendata/sec-corporate-events-mcp",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/aw2rkAvdee3wJRayX/builds/hCxh6OJ7cuzBp3iQx/openapi.json
