Silver Price MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Silver Price MCP ServerGet the current silver price"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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.
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
UPorDOWN.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.
Related MCP server: Groww MCP Server
Repository layout
├── src/ # MCP server implementation (tool + scraper)
├── requirements.txt # Python dependencies
├── pyproject.toml # Project configuration
└── README.md # This fileRequirements
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.txt2. Test it directly
python test.py3. 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 |
| 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
Opens the Groww.in silver page in a headless Chrome instance via Selenium.
Waits ~8 seconds for the page content to fully load.
Extracts price data from the page using regex.
Captures a full-page screenshot of the chart.
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
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Precious metals AI analyst with 12 tools — prices, portfolio, chat, receipts, and more.
Prix live de 11 dealers et specs complètes de 80+ pièces d'or et d'argent, pour agents IA.
Unlock the power of real-time cryptocurrency data with our Crypto Price Insights MCP server.
Live gold & silver prices for 37 countries. Tamara/Tabby installment calculators for Saudi Arabia.
Related MCP Servers
- AlicenseBqualityDmaintenanceA server that provides tools for retrieving real-time price information for various assets including precious metals and cryptocurrencies, allowing language models to access and display current asset price data.1393MIT
- AlicenseNot gradedqualityDmaintenanceEnables interaction with the Groww trading platform to fetch portfolio data, get live stock quotes and historical market data, and place, modify, or cancel stock orders through natural language commands.109MIT
- AlicenseAqualityDmaintenanceAn MCP server that enables users to manage equity holdings, execute trades, and track market data on Groww using natural language. It supports mutual fund investments and SIP management, including a mock mode for risk-free testing.2310MIT
- AlicenseNot gradedqualityCmaintenanceMCP Server for Indian Options — Real-time option chains, Greeks, 34+ strategies, OI analysis, IV smile, Max Pain. Works with Claude Desktop. Replaces Sensibull.109MIT