ProductLens-MCP
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., "@ProductLens-MCPcompare the Hyundai Creta and Kia Seltos"
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.
ProductLens MCP 🔍
A Product Intelligence MCP server — exposes product comparison and analysis tools that any MCP-compatible AI assistant (Claude Desktop, ChatGPT, Cursor, VS Code) can discover and use.
Built with FastMCP. Demo dataset: Indian compact SUVs.
Why MCP?
Instead of building a chatbot locked into one AI platform, ProductLens is a service. Build the logic once; every MCP client can call it:
Claude ─┐
ChatGPT ─┼──► ProductLens MCP ──► data / logic
Cursor ─┘The server describes its own tools (names, arguments, docs), so AI clients discover them automatically — no custom integration per assistant.
Related MCP server: MCP Product Search Server
Tools
Tool | What it does |
| Head-to-head comparison on price, mileage, power, safety, boot space — with per-metric winners and an overall edge |
| Lists the product catalog |
More coming: swot_analysis, summarize_reviews, generate_prd, prioritize_features.
Quick start
git clone https://github.com/<you>/ProductLens-MCP.git
cd ProductLens-MCP
pip install -r requirements.txt
python server.py # runs over stdio for MCP clients
python test_client.py # smoke-test via a real MCP clientConnect to Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"productlens": {
"command": "python",
"args": ["/absolute/path/to/ProductLens-MCP/server.py"]
}
}
}Restart Claude Desktop, then ask: "Compare Brezza and Nexon."
Project structure
ProductLens-MCP/
├── server.py # MCP layer — thin, just registers tools
├── tools/
│ └── compare.py # Pure logic — knows nothing about MCP
├── data/
│ └── cars.csv # Demo dataset (swap for any product CSV)
├── test_client.py # End-to-end MCP protocol test
└── requirements.txtDesign principle: logic and protocol are separated. tools/ could power a web app or CLI unchanged; server.py is just the MCP "waiter."
Sample output
compare_products("Brezza", "Nexon") returns structured JSON — per-metric winners, each product's advantages, and an overall edge — which the AI client turns into a natural-language answer.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/KeJ123/ProductLens-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server