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 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.Last updated1113MIT
- Alicense-qualityDmaintenanceEnables 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.Last updated289MIT
- 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.Last updated2328MIT
- Alicense-qualityAmaintenanceMCP Server for Indian Options — Real-time option chains, Greeks, 34+ strategies, OI analysis, IV smile, Max Pain. Works with Claude Desktop. Replaces Sensibull.Last updated218MIT
Related MCP Connectors
Provide real-time cryptocurrency price data and market analysis.
Live financial data MCP: FX, crypto, stocks, news, URL reader. x402 on Base: $0.001/call.
Real-time crypto prices from Binance, Coinbase, Kraken, OKX, and Bybit
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bhavuk1409/mcx-metal-price-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server