Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

altFINS Crypto Analytics

БесплатноНе проверен

Provides crypto market analytics including screener data, technical analysis, OHLC history, news, and calendar events.

GitHubEmbed

Описание

Provides crypto market analytics including screener data, technical analysis, OHLC history, news, and calendar events.

README

This repository contains a ready-to-use local MCP configuration for the altFINS server, plus examples of what each capability does.

What this MCP server gives you

The altFINS MCP server provides tools for:

  • Crypto calendar events (upcoming token, exchange, and ecosystem events)
  • Crypto news (sources and recent messages)
  • Market screener data (snapshot metrics, filters, and available data types)
  • Technical analysis data (indicator-driven views)
  • Historical analytics (time-series indicator history)
  • OHLC price history and latest candles

It can also expose additional tools depending on your server version (for example portfolio-related tools). The most reliable way to stay current is to query the live MCP server with list_tools.

Live tool discovery (Python direct MCP)

To keep your feature list updated automatically, use the Python direct integration in this repo:

  • examples/python/altfins_direct_tool_call.py
  • examples/python/README.md

This script:

  1. Connects directly to https://mcp.altfins.com/mcp with X-Api-Key.
  2. Calls list_tools and exports current tools to feature-runs/00-live-tool-catalog.md.
  3. Runs direct calls including:
    • technicalAnalysis_getTechnicalAnalysisDatapaginated, fetches all pages automatically (~50 curated entries)
    • ohlc_getLatestData
  4. Saves raw direct-call output to feature-runs/00-live-direct-tool-call-output.json.

Optional symbol filter for technical analysis:

$env:ALTFINS_TA_SYMBOLS="BTC,ETH,SOL"

Install Python dependencies for this script:

pip install -r requirements.txt

Option A (shell variable in current terminal):

$env:ALTFINS_API_KEY="YOUR_ALTFINS_API_KEY"
.venv/Scripts/python.exe examples/python/altfins_direct_tool_call.py

Option B (recommended, local .env file):

Copy-Item .env.example .env

Then set ALTFINS_API_KEY in .env.

The live discovered tool inventory is generated in:

  • feature-runs/00-live-tool-catalog.md

Use that generated file as the source of truth instead of a hardcoded list in this README.

Direct API implementation (no MCP)

This repo also includes a direct REST API implementation for technical analysis:

  • examples/python/altfins_direct_api_technical_analysis.py

Endpoint used:

  • https://altfins.com/api/v2/public/technical-analysis/data

Run with the same ALTFINS_API_KEY setup used by other examples:

.venv/Scripts/python.exe examples/python/altfins_direct_api_technical_analysis.py

Optional single-symbol filter:

$env:ALTFINS_TA_SYMBOLS="ADA"
.venv/Scripts/python.exe examples/python/altfins_direct_api_technical_analysis.py

Generated output:

  • feature-runs/00-live-direct-api-technical-analysis.json

Note: if direct API returns HTTP 403, your key may be valid for MCP usage but not authorized for this REST endpoint.

Symbols list

Fetch the complete list of 2000+ supported symbols:

.venv/Scripts/python.exe examples/python/altfins_symbols_list.py

Generated output:

  • feature-runs/00-live-symbols-list.json

Tool capability map (with one example each)

Below is one practical example per capability/tool.

1) Analytics types discovery

  • Tool: mcp_altfins-mcp-s_analytics_getAnalyticsTypes
  • What it does: lists all valid analytics type identifiers you can query historically.
  • Example request:
Show all analytics types available from altFINS so I can pick one for historical analysis.

2) Latest analytics history for all symbols

  • Tool: mcp_altfins-mcp-s_analytics_getAllLatestHistoryData
  • What it does: fetches the latest available datapoint for a selected analytics metric across many symbols.
  • Example request:
Get the latest RSI14 history datapoint across all tracked symbols.

3) Historical analytics for one symbol

  • Tool: mcp_altfins-mcp-s_analytics_getHistoryData
  • What it does: returns time-series values for one analytics type and symbol.
  • Example request:
Get SMA50 historical values for BTCUSDT over the last 90 days.

4) OHLC history

  • Tool: mcp_altfins-mcp-s_ohlc_getHistoryData
  • What it does: returns historical OHLC candles for a symbol and timeframe.
  • Example request:
Get daily OHLC history for ETHUSDT for the last 6 months.

5) Latest OHLC candle(s)

  • Tool: mcp_altfins-mcp-s_ohlc_getLatestData
  • What it does: returns the most recent OHLC candle(s) for a symbol/timeframe.
  • Example request:
Get the latest 1h OHLC candle for SOLUSDT.

6) Crypto calendar events

  • Tool: mcp_altfins-mcp-s_getCryptoCalendarEvents
  • What it does: fetches scheduled crypto events.
  • Example request:
Show crypto calendar events coming in the next 7 days.

7) News sources

  • Tool: mcp_altfins-mcp-s_news_getCryptoNewsSources
  • What it does: lists supported news sources.
  • Example request:
List all available crypto news sources in altFINS.

8) News messages

  • Tool: mcp_altfins-mcp-s_news_getCryptoNewsMessages
  • What it does: returns recent crypto news messages.
  • Example request:
Get the latest 20 crypto news messages from all sources.

9) Screener data types

  • Tool: mcp_altfins-mcp-s_screener_getAltfinsScreenerDataTypes
  • What it does: lists available screener fields/columns you can query.
  • Example request:
Show all altFINS screener data types and their meanings.

10) Screener data

  • Tool: mcp_altfins-mcp-s_screener_getAltfinsScreenerData
  • What it does: returns screener results for selected filters/columns.
  • Example request:
Get screener data for top coins with bullish trend and volume above average.

11) Technical analysis data

  • Tool: mcp_altfins-mcp-s_technicalAnalysis_getTechnicalAnalysisData
  • What it does: returns curated trade setups and professional analyst views.
  • Example request:
Get technical analysis data for ADAUSDT on the 4h timeframe.

12) User portfolio

  • Tool: getUserPortfolio
  • What it does: returns the authenticated user's connected portfolio.
  • Example request:
Get my connected user portfolio from altFINS.

Per-feature run files

Each capability execution (prompt + output) is saved in one file:

Live generated files from direct MCP discovery/calls:

Local MCP configuration saved in this repo

This repo stores a working altFINS MCP config template at:

  • keep/altfins-mcp.json

Copy it into your VS Code User MCP config (for example %APPDATA%\Code\User\mcp.json) and adapt as needed.

Quick setup

  1. Create a virtual environment (recommended):
python -m venv .venv
.\.venv\Scripts\Activate.ps1
  1. Install dependencies:
pip install -r requirements.txt
  1. Create your environment file from template:
Copy-Item .env.example .env
  1. Set your API key in .env:
ALTFINS_API_KEY=your_real_api_key_here
  1. Run live discovery:
.venv/Scripts/python.exe examples/python/altfins_direct_tool_call.py
  1. Open this folder in VS Code and ensure MCP support is enabled.

  2. Reload the window (Developer: Reload Window) if the MCP server is not picked up immediately.

  3. In Copilot Chat (agent mode), try one of the example prompts from this README.

Notes

  • If your altFINS MCP server config format changes, update keep/altfins-mcp.json and your VS Code User MCP config accordingly.
  • Keep secrets in .env (or your OS secret store), not in committed files.

from github.com/danywaygit/altfinsmcp

Установка altFINS Crypto Analytics

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/danywaygit/altfinsmcp

FAQ

altFINS Crypto Analytics MCP бесплатный?

Да, altFINS Crypto Analytics MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для altFINS Crypto Analytics?

Нет, altFINS Crypto Analytics работает без API-ключей и переменных окружения.

altFINS Crypto Analytics — hosted или self-hosted?

Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.

Как установить altFINS Crypto Analytics в Claude Desktop, Claude Code или Cursor?

Открой altFINS Crypto Analytics на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare altFINS Crypto Analytics with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории finance