Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Provides read-only access to justETF data including ETF search, profiles, charts, comparisons, and live quotes via MCP tools.

README.md

justetf-mcp

![CI](https://github.com/p-gentili/justetf-mcp/actions/workflows/ci.yml) ![License: MIT](LICENSE) ![Python](pyproject.toml)

A local Model Context Protocol (MCP) server for read-only justETF data.

This server wraps the third-party druzsan/justetf-scraping Python scraper and exposes a compact MCP tool surface for ETF search, profiles, charts, comparisons, and live quotes.

Caveat: justETF does not publish a stable public API for these endpoints. The upstream scraper relies on justETF web-app endpoints/page structure, so tools can break if justETF changes its site. Use conservative request volumes and review justETF terms for your use case. This is not investment advice.

Tools

  • search_etfs — query the justETF screener with filters and pagination.
  • get_etf_profile — profile/details for one ISIN, including holdings and country/sector allocations.
  • get_chart — historical chart/performance series for one ISIN.
  • compare_charts — compare performance series for multiple ISINs.
  • get_live_quote — latest gettex/EUR quote via justETF's WebSocket feed.

There is also a justetf://help resource with brief usage notes.

Install

uv sync

Or install as a Python package:

pip install .

Run locally

uv run justetf-mcp

The server communicates over stdio, which is the usual transport for local MCP clients.

MCP client configuration

Example configuration for a stdio MCP client:

{
  "mcpServers": {
    "justetf": {
      "command": "uv",
      "args": ["--directory", "/absolute/path/to/justetf-mcp", "run", "justetf-mcp"]
    }
  }
}

If you install the package globally/in a dedicated venv, use the justetf-mcp executable directly.

Example prompts

  • "Search justETF for MSCI World accumulating ETFs and show TER and fund size."
  • "Get the profile for IE00B4L5Y983 without live quote."
  • "Compare IE00B4L5Y983 and IE00B3RBWM25 over the last 5 years."
  • "Fetch the last 30 chart rows for IE00B5BMR087."

Development

uv sync --dev      # install runtime + dev dependencies
uv run pytest -q   # run the test suite
uv run ruff check . # lint

How the underlying scraper reaches justETF

The upstream justetf-scraping package currently uses:

  • Screener: https://www.justetf.com/en/search.html with Wicket AJAX POST requests.
  • Chart data: https://www.justetf.com/api/etfs/{isin}/performance-chart.
  • Live quote: wss://api.mobile.stock-data-subscriptions.justetf.com/?subscription=trend&parameters=isins:{isin}/currency:EUR/language:en.
  • Profile pages: https://www.justetf.com/en/etf-profile.html?isin={isin} plus AJAX expansion for allocations.

Acknowledgements

Data access is provided by the third-party druzsan/justetf-scraping package, which is MIT licensed. This project is not affiliated with or endorsed by justETF.

License

MIT © Paolo Gentili. The bundled dependency justetf-scraping is also MIT licensed, so the two are license-compatible.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.