Server data from the Official MCP Registry
Claude AI for IndiaMART leads - fetch, search, sync and track pipeline.
Claude AI for IndiaMART leads - fetch, search, sync and track pipeline.
This IndiaMART MCP server has good authentication and appropriate permissions but contains potential hardcoded credentials in pipeline routes and some code quality concerns around broad exception handling. The core functionality appears safe with proper environment variable handling for API keys. Supply chain analysis found 4 known vulnerabilities in dependencies (0 critical, 3 high severity).
5 files analyzed ยท 9 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-techmatic-sys-indiamart-mcp-server": {
"args": [
"indiamart-mcp-server"
],
"command": "uvx"
}
}
}From the project's GitHub README.
A fully functional Model Context Protocol (MCP) server that connects Claude AI to IndiaMART's Lead Management API. Fetch, search, analyze, and manage your IndiaMART buyer leads using natural language.
git clone https://github.com/Techmatic-sys/indiamart-mcp-server.git
cd indiamart-mcp-server
pip install -r requirements.txt
Then add to your Claude Desktop config and you're done. Full setup below.
git clone https://github.com/Techmatic-sys/indiamart-mcp-server.git
cd indiamart-mcp-server
python -m venv venv
# Windows
venv\Scripts\activate
# macOS/Linux
source venv/bin/activate
# MCP server only (lightweight, 4 packages)
pip install -r requirements.txt
# Full SaaS web app (includes FastAPI, uvicorn, etc.)
pip install -r requirements-saas.txt
# Copy the example env file
cp .env.example .env # Linux/macOS
copy .env.example .env # Windows
# Edit .env with your credentials
glusr_crm_key).env fileNote: The API key gives access to your leads. Keep it secret!
# Standard run (Claude Desktop starts this automatically)
python mcp_server.py
# Check version
python mcp_server.py --version
# Health check (verify DB connectivity)
python mcp_server.py --health
| OS | Path |
|---|---|
| Windows | %APPDATA%\Claude\claude_desktop_config.json |
| macOS | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Linux | ~/.config/Claude/claude_desktop_config.json |
{
"mcpServers": {
"indiamart": {
"command": "python",
"args": ["mcp_server.py"],
"cwd": "/ABSOLUTE/PATH/TO/indiamart-mcp-server",
"env": {
"INDIAMART_API_KEY": "your_crm_api_key_here",
"INDIAMART_GLID": "your_glid_here"
}
}
}
}
Replace cwd with your actual path:
"C:\\Users\\YourName\\indiamart-mcp-server""/Users/yourname/indiamart-mcp-server""/home/yourname/indiamart-mcp-server"Close and reopen Claude Desktop. You should see the IndiaMART tools available in the tools menu.
claude mcp add indiamart -- python /ABSOLUTE/PATH/TO/indiamart-mcp-server/mcp_server.py
Then set your environment variables:
# In your shell profile or before launching Claude Code
export INDIAMART_API_KEY="your_crm_api_key_here"
export INDIAMART_GLID="your_glid_here"
Add to your .claude/settings.json (project-level) or ~/.claude/settings.json (global):
{
"mcpServers": {
"indiamart": {
"command": "python",
"args": ["/ABSOLUTE/PATH/TO/indiamart-mcp-server/mcp_server.py"],
"env": {
"INDIAMART_API_KEY": "your_crm_api_key_here",
"INDIAMART_GLID": "your_glid_here"
}
}
}
}
Replace the path with your actual absolute path to mcp_server.py.
Once connected, ask Claude Code:
OpenClaw is a self-hosted AI agent platform. Your IndiaMART leads become a native skill in OpenClaw, accessible from any interface OpenClaw supports.
| OS | Path |
|---|---|
| Linux/macOS | ~/.openclaw/openclaw.json |
| Windows | C:\Users\YourName\.openclaw\openclaw.json |
Open the config and add under skills.mcpServers:
{
skills: {
mcpServers: {
indiamart: {
command: "python",
args: ["mcp_server.py"],
cwd: "/absolute/path/to/indiamart-mcp-server",
env: {
INDIAMART_API_KEY: "your_crm_api_key_here",
INDIAMART_GLID: "your_glid_here"
}
}
}
}
}
See
openclaw-config-example.json5at the repo root for a ready-to-copy template.
openclaw gateway restart
openclaw status --all
# You should see "indiamart" listed with 10 tools
Run the MCP server in SSE mode on your server:
python mcp_server.py --transport sse --host 0.0.0.0 --port 8000
Then point your OpenClaw config to http://your-server-ip:8000.
| Prompt | What It Does |
|---|---|
| "Show me all leads from the last 24 hours" | Syncs and displays recent leads |
| "How many leads did I get this week and from which cities?" | Shows lead statistics |
| "Search for leads asking about steel pipes" | Keyword search in product/message |
| "Draft a reply for lead ID IML123456789" | Generates professional buyer reply |
| "Move lead IML123 to qualified stage" | Updates pipeline stage |
| "Add a note to lead IML123: Very interested in bulk order" | Attaches a note |
| "Export all leads from January 2026 as CSV" | Exports leads in CSV format |
| "Sync my latest IndiaMART leads" | Pulls latest leads into local DB |
| Tool | Description |
|---|---|
tool_get_leads_by_date | Fetch leads from IndiaMART for a date range |
tool_get_recent_leads | Get leads from the last N hours |
tool_get_lead_stats | Analytics: totals, by city, product, and date |
tool_search_leads | Search leads by keyword |
tool_get_lead_by_id | Full details of a specific lead |
tool_draft_reply | Draft a professional reply for a buyer |
tool_export_leads_csv | Export leads as CSV |
tool_sync_latest_leads | Sync latest from IndiaMART to local DB |
| Tool | Description |
|---|---|
tool_update_lead_stage | Move leads through pipeline (new โ contacted โ qualified โ won/lost) |
tool_add_note | Attach private notes to leads for follow-up tracking |
indiamart-mcp-server/
โโโ ๐ mcp_server.py โ SINGLE entry point
โโโ ๐ smithery.yaml โ Smithery.ai marketplace manifest
โโโ ๐ pyproject.toml โ Python package config
โโโ ๐ requirements.txt โ MCP only (5 packages)
โโโ ๐ requirements-saas.txt โ Web app deps
โโโ ๐ README.md โ This file
โโโ ๐ CHANGELOG.md โ Version history
โโโ ๐ LICENSE โ MIT License
โโโ ๐ .env.example โ Annotated credential guide
โโโ ๐ .gitignore โ Git ignore rules
โโโ ๐ docker-compose.yml โ Full stack Docker setup
โ
โโโ ๐ mcp_tools/ โ Core MCP Package
โ โโโ __init__.py
โ โโโ ๐ง tools.py โ 10 MCP tools with rich docstrings
โ โโโ ๐ schemas.py โ Pydantic validation + response types
โ โโโ ๐ http_client.py โ Resilient API client with retry
โ โโโ ๐พ database.py โ SQLite operations
โ โโโ ๐ auth.py โ API key helpers
โ โโโ ๐ณ Dockerfile โ MCP server Docker image
โ
โโโ ๐ saas/ โ SaaS Web App (FastAPI)
โ โโโ ...
โ
โโโ ๐ tests/ โ Test suite
โ โโโ conftest.py โ pytest fixtures
โ โโโ test_tools.py โ Validation + integration tests
โ
โโโ ๐ .github/ โ CI/CD
โ โโโ workflows/ci.yml
โ
โโโ ๐ docs/ โ Documentation
โโโ tools.md
โโโ examples.md
.env file (not just .env.example).env file is in the project root directoryclaude_desktop_config.json for syntax errors (valid JSON?)cwd path is correct and mcp_server.py exists thereYYYY-MM-DD, DD-MM-YYYY, DD/MM/YYYY, DD-Mon-YYYY2026-01-15, 15-01-2026, 15-Jan-2026MIT License. Use freely for your business.
git checkout -b feature/my-featuregit commit -m "Add my feature"git push origin feature/my-featureBuilt with โค๏ธ for Indian sellers on IndiaMART
Be the first to review this server!
by Modelcontextprotocol ยท Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno ยท Developer Tools
Toleno Network MCP Server โ Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace ยท Developer Tools
Create, build, and publish Python MCP servers to PyPI โ conversationally.
by Microsoft ยท Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption
by mcp-marketplace ยท Developer Tools
Scaffold, build, and publish TypeScript MCP servers to npm โ conversationally
by mcp-marketplace ยท Finance
Free stock data and market news for any MCP-compatible AI assistant.