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

xl-addin-mcp

v1.6.0

Published

MCP server exposing XLQuote, DataFrame, Technical Indicator, and Vega Chart add-in functions to AI assistants

Readme

xl-addin-mcp

MCP server that exposes XLQuote, DataFrame, Technical Indicator, and Vega Chart Excel add-in functions to AI assistants. Ask your AI to build Excel workbooks with real-time market data, technical indicators, data pipelines, and charts — all using the add-in formulas you already know.

Quick start

npx xl-addin-mcp

No install needed. Requires Node.js 18+.

Setup by AI client

Claude Code

claude mcp add xl-addin -- npx xl-addin-mcp

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "xl-addin": {
      "command": "npx",
      "args": ["xl-addin-mcp"]
    }
  }
}

Config file location:

  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

Cursor / Windsurf

Add to your MCP settings (.cursor/mcp.json or equivalent):

{
  "mcpServers": {
    "xl-addin": {
      "command": "npx",
      "args": ["xl-addin-mcp"]
    }
  }
}

SSE transport (web-based clients)

npm run start:sse

Or, from npm without a global install:

npx -p xl-addin-mcp xl-addin-mcp-sse

xl-addin-mcp-sse is a bin exposed by the xl-addin-mcp package, not a standalone package name. This starts an Express server on port 3100. Connect your client to http://localhost:3100/sse. Set PORT env var to change the port.

Available tools

| Tool | Description | |------|-------------| | list_functions | List add-in functions, optionally filtered by category | | search_functions | Search functions by keyword across all four add-ins | | get_function_details | Get complete details for a specific function | | get_formula | Build an exact Excel formula string | | get_symbol_format | Get correct symbol format for a data source | | generate_workbook | Generate an .xlsx workbook with add-in formulas | | list_templates | List predefined workbook templates |

What you can ask your AI

  • "Create a portfolio dashboard for AAPL, MSFT, GOOGL with price, P/E, and dividend yield"
  • "Pull SPY OHLCV data and add SMA 50/200 indicators"
  • "What's the correct symbol format for TradingView?"
  • "Build a workbook with a Vega line chart of SMA crossovers for the last 90 days"
  • "Show me all available technical indicator functions"

Workbook generation

The generate_workbook tool creates .xlsx files with:

  • Ticker sheets — per-ticker rows with formulas (portfolio dashboards)
  • Array sheets — dynamic array functions (OHLCV, SMA, etc.) that spill automatically
  • DataFrame pipelines — df → df.select → df.head → df.view chains
  • Vega Charts — VEGACHART.LINE, VEGACHART.BAR, etc.

Predefined templates: xlquote_portfolio, xlquote_technical, xlquote_earnings, xlquote_risk.

Dynamic array support

Generated workbooks include XLDAPR metadata so dynamic array formulas spill correctly in Excel 365 — no @ implicit intersection operator.

Data sources & symbol formats

Symbol format varies by source. Use the get_symbol_format tool or ask your AI:

| Source | Example (Apple) | |--------|----------------| | Yahoo | AAPL | | TradingView | AMERICA/NASDAQ:AAPL | | Interactive Brokers | AAPL/SMART | | EOD Historical | AAPL.US | | Coinbase | BTC-USD |

18 sources supported — run get_symbol_format for the full list.

Requirements

  • Node.js 18 or later
  • Excel with XLQuote / DataFrame / Technicals / Vega Chart add-ins installed (formulas show #NAME? without them)

License

MIT