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

technical-analysis-mcp

v1.0.0

Published

A Model Context Protocol (MCP) server that provides technical analysis of financial charts using AI vision capabilities.

Readme

Technical Analysis MCP Server

A Model Context Protocol (MCP) server that provides technical analysis of financial charts using AI vision capabilities. The server captures screenshots of financial charts and uses AI to interpret the patterns, indicators, and provide trading recommendations.

Features

  • Capture financial chart screenshots from any symbol (stocks, crypto, forex)
  • Support for multiple timeframes (1m, 5m, 15m, 30m, 1h, 2h, 4h, daily, weekly)
  • Analyze charts with various technical indicators (MACD, RSI, Bollinger Bands, etc.)
  • AI-powered interpretation of chart patterns and indicators
  • Trading recommendations based on technical analysis

Architecture

The application consists of the following components:

  1. MCP Server: Provides a standard interface for client applications to request technical analysis
  2. Browserless Integration: Captures screenshots of financial charts
  3. OpenAI Integration: Analyzes chart images to provide technical analysis

Prerequisites

  • Node.js (>= 18.x)
  • API keys for:
    • Browserless API
    • OpenAI API (with GPT-4 Vision capabilities)

Installation

  1. Clone the repository
  2. Install dependencies:
npm install
  1. Create a .env file with your API keys:
BROWSERLESS_BASE_URL=https://your-browserless-instance.com
BROWSERLESS_TOKEN=your_browserless_token

OPENAI_API_KEY=your_openai_api_key
FINCHARTS_BASE_URL=https://your-fincharts-url.com
  1. Build the project:
npm run build

Usage

Run the MCP server:

node build/index.js

The server exposes the following tool:

get_technical_analysis

Analyzes a financial chart and provides technical analysis.

Parameters:

  • symbol (string): The trading symbol to analyze (e.g., 'BINANCE:BTCUSDT', 'NASDAQ:MSFT', 'EURUSD', 'AAPL')
  • interval (enum): The timeframe for analysis ('1', '5', '15', '30', '60', '120', '240', 'D', 'W')
  • studies (array of string, optional): Technical indicators to include in the analysis

Response:

Returns a technical analysis of the chart, including:

  • Current market conditions
  • Identified patterns
  • Indicator readings
  • Support and resistance levels
  • Trading recommendations

Available Technical Indicators

The service supports numerous technical indicators, including but not limited to:

  • Bollinger Bands (BB)
  • Moving Average Convergence Divergence (MACD)
  • Relative Strength Index (RSI)
  • Stochastic RSI
  • Volume
  • Ichimoku Cloud
  • Moving Averages (Simple, Exponential, Weighted)
  • And many more...

Development

  1. Build the project in watch mode:
tsc --watch
  1. Make your changes and test them

License

ISC