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

deepviews-mcp

v1.0.2

Published

Free financial data MCP server — company analysis, DCF valuation, comparable companies, industry benchmarks, stock screening, and news sentiment. No API key required. Powered by SEC EDGAR + Polygon.io.

Readme

DeepViews MCP Server

Free financial data MCP server for Claude Code and any MCP-compatible AI client. Access company analysis, DCF valuation, comparable companies, industry benchmarks, stock screening, and news sentiment -- no API key required.

A free alternative to paid financial data MCP integrations like FactSet ($20-80K/year) and S&P Capital IQ ($25-100K/year).

Quick Start

Option 1: npx (no install)

Add to your MCP settings:

{
  "mcpServers": {
    "deepviews": {
      "command": "npx",
      "args": ["-y", "deepviews-mcp"]
    }
  }
}

Option 2: Global install

npm install -g deepviews-mcp

Then add to your MCP settings:

{
  "mcpServers": {
    "deepviews": {
      "command": "deepviews-mcp"
    }
  }
}

Option 3: Claude Code Plugin

If available in the Claude Code plugin directory:

/plugin install deepviews@claude-plugins-official

Available Tools

| Tool | Description | Data Source | |------|-------------|-------------| | analyze_company | Comprehensive financial analysis: valuation ratios, income statement, balance sheet, cash flow, profitability margins | SEC EDGAR + Polygon.io | | calculate_dcf | DCF valuation with sensitivity matrix, reverse DCF, and margin of safety | SEC EDGAR + Polygon.io + DeepViews | | get_comparables | Comparable company analysis: target vs 10 closest peers by market cap, 8 metrics each | SEC EDGAR + Polygon.io | | get_industry_benchmarks | Peer comparison with P25/P50/P75 for P/E, P/B, EV/EBITDA, margins, ROE, D/E across 10 metrics | SEC EDGAR + Polygon.io | | get_analyst_ratings | Estimated consensus rating, price targets, and rating distribution (DeepViews estimate) | Polygon.io + DeepViews | | screen_stocks | Filter stocks by sector, industry, P/E, P/B, EV/EBITDA, ROE, D/E, market cap, revenue | SEC EDGAR + Polygon.io | | get_news_sentiment | 30-day news sentiment score, trend, and article breakdown | Polygon.io News API |

Example Usage

> Analyze Apple's financials and tell me how it compares to peers

> Calculate a DCF for MSFT with 12% growth rate and 10% WACC

> Show me NVDA's comparable companies in the semiconductor industry

> Screen for technology stocks with P/E under 25 and ROE above 20%

> What's the news sentiment around TSLA right now?

Data Coverage

  • US-listed equities: All companies filing with SEC EDGAR (10-K, 10-Q)
  • Market data: Real-time prices and market caps via Polygon.io
  • Financial statements: Up to 4 years of annual data
  • Comparable companies: SIC-based peers sorted by market cap proximity
  • Industry benchmarks: SIC-code based peer groups with hybrid EDGAR/Polygon metrics
  • News: 30-day rolling window, up to 50 articles per ticker

Configuration

| Variable | Default | Description | |----------|---------|-------------| | DEEPVIEWS_API_URL | https://www.deepviews.dev | Base URL for API calls. Override for local development. |

Data Sources & Attribution

  • SEC EDGAR -- Financial statements, peer groupings, SIC classifications
  • Polygon.io -- Market caps, stock prices, news articles, company metadata
  • DeepViews -- DCF calculations, analyst rating estimates, sentiment analysis, comparable company analysis

Rate Limits

The DeepViews API enforces rate limiting (60 requests/minute). The MCP server respects these limits. If you receive a rate limit error, wait a moment and retry.

License

Apache-2.0