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

Fetches real-time silver prices and chart images from MCX India via Groww.in, including price metrics, trends, and a base64-encoded PNG chart.

README.md

Silver Price MCP Server

A Model Context Protocol (MCP) server that fetches live MCX India silver prices — plus a chart image — straight from Groww.in. No API key required; the data is scraped in real time and handed to any MCP-compatible client as structured JSON and a PNG chart.

!python !scraping !data-00d09c) !license

---

What it does

  • Live silver price — current price, open, previous close, and % / ₹

change, pulled straight from MCX India via Groww.in.

  • 52-week range — high/low over the trailing year.
  • Volume & open interest — lot size and OI lots included.
  • Trend detection — flags the move as UP or DOWN.
  • Chart image included — a full-page screenshot of the price chart,

returned as a base64-encoded PNG alongside the JSON.

  • No API key needed — works out of the box; the data comes from a

headless Chrome scrape, not a paid feed.

---

Repository layout

├── src/                  # MCP server implementation (tool + scraper)
├── requirements.txt      # Python dependencies
├── pyproject.toml        # Project configuration
└── README.md             # This file

---

Requirements

  • Python 3.10+
  • Chrome browser (runs headless via Selenium)
  • Dependencies: mcp, selenium, webdriver-manager

---

Quickstart

1. Install

git clone https://github.com/bhavuk1409/silver-mcx-mcp-server.git
cd silver-mcx-mcp-server

pip install -r requirements.txt

2. Test it directly

python test.py

3. Connect to Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "silver-price": {
      "command": "python",
      "args": ["-m", "mcp_metal_price"],
      "cwd": "/path/to/silver-mcx-mcp-server"
    }
  }
}

Restart Claude Desktop and ask: "Get the current silver price."

---

Tool

| Name | Parameters | Returns | | --- | --- | --- | | get_silver_price | none | JSON price metrics + a base64-encoded PNG chart |

Example response:

{
  "metal": "Silver",
  "symbol": "XAG",
  "currency": "INR",
  "current_price": "2,42,798.00",
  "price_formatted": "₹2,42,798.00",
  "open": "2,42,775.00",
  "previous_close": "2,40,277.00",
  "52w_low": "1,09,741.00",
  "52w_high": "2,59,692.00",
  "oi_lots": "12,394",
  "lot_size": "30",
  "change": "+2521.00",
  "percent_change": "+1.05%",
  "trend": "UP"
}

---

How it works

  1. Opens the Groww.in silver page in a headless Chrome instance via Selenium.
  2. Waits ~8 seconds for the page content to fully load.
  3. Extracts price data from the page using regex.
  4. Captures a full-page screenshot of the chart.
  5. Returns the parsed JSON plus the chart image to the MCP client.

---

Notes

  • Scraping takes roughly 8–10 seconds per call.
  • Chrome runs headless — no visible window.
  • Chart image is PNG format, base64-encoded.
  • Data source is MCX India via Groww.in and can change format if the site

changes its layout.

---

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Browser & Scraping servers.