Arham Jewellers 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., "@Arham Jewellers MCP Serverwhat is today's gold rate?"
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.
Arham Jewellers MCP Server
MCP (Model Context Protocol) server for the Arham Jewellers customer AI assistant. Exposes tools for searching products, browsing categories, checking gold rates, tracking orders, placing orders, and getting store info.
Prerequisites
Node.js 18+ (uses built-in
fetch)A running Arham Jewellers backend API
Related MCP server: Shiprocket MCP Integration
Setup
# Install dependencies
npm install
# Configure environment
cp .env.example .env
# Edit .env with your API_BASE_URL
# Build
npm run buildConfiguration
Create a .env file — only the API base URL is needed (token is passed per request):
API_BASE_URL=https://arham-jewellers-backend.onrender.comRunning
npm startGet a Token
# Admin login (phone must include +91 prefix)
LOGIN_PHONE=+919879879870 LOGIN_PASSWORD=Admin@1234 npm run get-token
# User login
LOGIN_PHONE=+919879879870 LOGIN_PASSWORD=yourpass npm run get-tokenAvailable Tools (11)
All tools require a token parameter (JWT) passed by the MCP client with each request.
Tool | Description |
| Search products by name, karat, or category |
| Get full details of a specific product |
| Find a product by barcode number |
| Get the hierarchical category tree (Level 1=Karat, 2=Collection, 3=Style) |
| List products in a Level 3 category |
| Get today's gold rate per gram |
| Get historical gold rates |
| Get order history |
| Get details of a specific order |
| Place an order (requires user confirmation) |
| Get store info (About, Contact, Terms, etc.) |
Important Notes
Category levels: Only Level 3 (Style) category IDs return products. Use
get_categories(level=3)to find valid IDs.Order placement:
place_orderuses a two-step confirm flow — the AI must ask the user before settingconfirm=true.Gold rate: The
/api/v1/gold-rate/currentendpoint may not be available on all backend versions.
Connect to MCP Clients
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"arham-jewellers": {
"command": "node",
"args": [
"--env-file=/absolute/path/to/arham-mcp-server/.env",
"/absolute/path/to/arham-mcp-server/build/index.js"
]
}
}
}Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"arham-jewellers": {
"command": "node",
"args": [
"--env-file=/absolute/path/to/arham-mcp-server/.env",
"/absolute/path/to/arham-mcp-server/build/index.js"
]
}
}
}Project Structure
src/
├── index.ts # Entry point (MCP server + STDIO transport)
├── config.ts # Environment variable loader
├── api-client.ts # HTTP client for backend API (token passed per call)
├── types.ts # TypeScript interfaces
└── tools/
├── index.ts # Tool registry
├── products.ts # search_products, get_product_details, get_product_by_barcode
├── categories.ts # get_categories, get_category_products
├── gold-rate.ts # get_current_gold_rate, get_gold_rate_history
├── orders.ts # get_user_orders, get_order_details, place_order
└── store.ts # get_store_infoMaintenance
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
- AlicenseBqualityDmaintenanceEnables trading and portfolio management on Zerodha Kite Connect through natural language. Supports placing orders, viewing positions/holdings, accessing real-time market data, and managing GTT orders.24MIT
- Flicense-qualityCmaintenanceEnables interaction with Shiprocket shipping services to check courier rates and delivery times, create and manage orders, ship packages, track shipments, and schedule pickups through natural language commands.1129
- 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.139MIT
- Alicense-qualityDmaintenanceEnables interaction with Shopify store data through the GraphQL Admin API, supporting product, customer, and order management. It allows users to search, retrieve, create, and update store resources via natural language commands.742MIT
Related MCP Connectors
Search and get fashion products recommendations across multiple e-ecom stores
Routes natural-language shopping queries to merchant storefronts, returns normalized results.
Search products in nearby stores. Agents can also list items for sale on a user's behalf.
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/parthhimself0/arham-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server