altFINS Crypto Analytics
БесплатноНе проверенProvides crypto market analytics including screener data, technical analysis, OHLC history, news, and calendar events.
Описание
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.pyexamples/python/README.md
This script:
- Connects directly to
https://mcp.altfins.com/mcpwithX-Api-Key. - Calls
list_toolsand exports current tools tofeature-runs/00-live-tool-catalog.md. - Runs direct calls including:
technicalAnalysis_getTechnicalAnalysisData— paginated, fetches all pages automatically (~50 curated entries)ohlc_getLatestData
- 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:
- feature-runs/01-analytics-types.md
- feature-runs/02-latest-analytics.md
- feature-runs/03-historical-analytics.md
- feature-runs/04-ohlc-history.md
- feature-runs/05-latest-ohlc.md
- feature-runs/06-calendar-events.md
- feature-runs/07-news-sources.md
- feature-runs/08-news-messages.md
- feature-runs/09-screener-data-types.md
- feature-runs/10-screener-data.md
- feature-runs/11-technical-analysis.md
- feature-runs/12-user-portfolio.md
Live generated files from direct MCP discovery/calls:
- feature-runs/00-live-tool-catalog.md (generated after running Python script)
- feature-runs/00-live-direct-tool-call-output.json (generated after running Python script)
- feature-runs/00-live-direct-api-technical-analysis.json (generated after running direct API script)
- feature-runs/00-live-symbols-list.json (generated after running symbols list script)
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
- Create a virtual environment (recommended):
python -m venv .venv
.\.venv\Scripts\Activate.ps1
- Install dependencies:
pip install -r requirements.txt
- Create your environment file from template:
Copy-Item .env.example .env
- Set your API key in
.env:
ALTFINS_API_KEY=your_real_api_key_here
- Run live discovery:
.venv/Scripts/python.exe examples/python/altfins_direct_tool_call.py
Open this folder in VS Code and ensure MCP support is enabled.
Reload the window (
Developer: Reload Window) if the MCP server is not picked up immediately.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.jsonand your VS Code User MCP config accordingly. - Keep secrets in
.env(or your OS secret store), not in committed files.
Установка altFINS Crypto Analytics
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/danywaygit/altfinsmcpFAQ
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
Stripe
Payments, customers, subscriptions
автор: Stripemalamutemayhem/unclick-agent-native-endpoints
110+ tools for AI agents spanning social media, finance, gaming, music, AU-specific services, and utilities. Zero-config local tools plus platform connectors. n
автор: malamutemayhemwhiteknightonhorse/APIbase
Unified API hub for AI agents with 56+ tools across travel (Amadeus, Sabre), prediction markets (Polymarket), crypto, and weather. Pay-per-call via x402 micropa
автор: whiteknightonhorsetrackerfitness729-jpg/sitelauncher-mcp-server
Deploy live HTTPS websites in seconds. Instant subdomains ($1 USDC) or custom .xyz domains ($10 USDC) on Base chain. Templates for crypto tokens and AI agent pr
Compare altFINS Crypto Analytics with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории finance
