npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

sec-daily-mcp

v0.1.1

Published

MCP server for the SEC Daily API — gives AI assistants real-time access to SEC EDGAR filings, news, and company data.

Readme

SEC Daily MCP Server

Official Model Context Protocol (MCP) server for the SEC Daily API — gives AI assistants real-time access to SEC EDGAR filings, company data, and news.

Works with any MCP-compatible AI tool: Claude Desktop, Cursor, Windsurf, VS Code Copilot, ChatGPT Desktop, Cline, Continue, and more.

Prerequisites

Setup

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "sec-daily": {
      "command": "npx",
      "args": ["-y", "sec-daily-mcp"],
      "env": {
        "SEC_DAILY_API_KEY": "your-api-key-here"
      }
    }
  }
}

Restart Claude Desktop. The SEC Daily tools will be available automatically.

Cursor / Windsurf / Other MCP Clients

Add the same block under your tool's MCP server configuration. The format is identical across all MCP-compatible clients.


What the AI can do

Once configured, your AI assistant can answer questions like:

  • "Show me Apple's latest 10-K filing"
  • "What 8-K filings did Tesla submit this week?"
  • "Find all S-1 filings from the last 30 days"
  • "Look up NVIDIA's company profile and CIK"
  • "Get the latest SEC press releases"
  • "Show me Microsoft's 10-Q from last quarter"
  • "Find all Form 4 insider filings for Amazon this month"

Tool reference

search_filings

Search and filter SEC EDGAR filings across all form types.

| Parameter | Type | Description | |---|---|---| | ticker | string | Company ticker, e.g. "AAPL" | | cik | string | Company CIK (numeric) | | accessionNumber | string | Exact SEC accession number | | formTypes | string | string[] | e.g. "10-K", ["10-K","10-Q"], "8-K", "4", "13F-HR" | | filingDate | string | Exact date YYYY-MM-DD | | filingDateStart | string | Date range start YYYY-MM-DD | | filingDateEnd | string | Date range end YYYY-MM-DD | | fieldset | "minimal" | "standard" | "full" | Response size control | | limit | number | Results per page, default 200, max 1000 | | cursor | string | Pagination cursor from a previous response |

get_entity

Look up a company's SEC profile. Requires either ticker or cik.

| Parameter | Type | Description | |---|---|---| | ticker | string | e.g. "AAPL" | | cik | string | Numeric CIK string |

Returns: name, CIK, ticker, exchange, SIC code, industry, state of incorporation, fiscal year end, address, website, former names.

get_filing

Fetch a single filing by ID or accession number. Requires either id or accessionNumber.

| Parameter | Type | Description | |---|---|---| | id | string | Internal filing ID | | accessionNumber | string | SEC accession number |

get_news

Retrieve SEC press releases and market news.

| Parameter | Type | Description | |---|---|---| | newsType | string | News category (default: "PressReleases") | | startDate | string | Date range start YYYY-MM-DD | | endDate | string | Date range end YYYY-MM-DD | | limit | number | Results (default 40, max 100) |


Resources


Licensed under the Apache 2.0 License. Copyright 2026 GoodTech LLC.