Search ethical, origin-verified products and brands by country of origin
{
"mcpServers": {
"originselect": {
"args": [
"originselect-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Search ethical, origin-verified products and brands by country of origin
Is it safe?
No known CVEs for originselect-mcp-server.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 34 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'originselect-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for io.github.chhavimishra/originselect-mcp-server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Model Context Protocol server for OriginSelect — search ethical, origin-verified products and brands via AI agents.
Works with Claude Desktop, Cursor, Windsurf, and any MCP-compatible client.
No install needed — just add to your Claude Desktop config:
{
"mcpServers": {
"originselect": {
"command": "npx",
"args": ["originselect-mcp-server"]
}
}
}
npm install -g originselect-mcp-server
Then add to Claude Desktop config:
{
"mcpServers": {
"originselect": {
"command": "originselect-mcp-server"
}
}
}
git clone https://github.com/chhavimishra/originselect-mcp-server.git
cd originselect-mcp-server
npm install
{
"mcpServers": {
"originselect": {
"command": "node",
"args": ["/absolute/path/to/originselect-mcp-server/src/index.js"],
"env": {
"API_BASE_URL": "https://api.originselect.com"
}
}
}
}
Add to your MCP settings:
{
"originselect": {
"command": "npx",
"args": ["originselect-mcp-server"]
}
}
Once connected, ask your AI assistant:
search_productsSearch the curated product catalog by values, country, category, brand, or keywords.
"Find organic baby products from Canada under $25"
→ { country: "Canada", category: "Baby", values: ["organic"], priceMax: 25 }
| Parameter | Type | Description |
|-----------|------|-------------|
| query | string | Optional NL query for context |
| country | string | Country of origin (Canada, USA) |
| category | string | Product category (Beauty, Baby, Pet Care, etc.) |
| values | string[] | Ethical values (women-owned, organic, b-corp, etc.) |
| brand | string | Brand name |
| keywords | string[] | Product keywords (shampoo, coffee, etc.) |
| priceMax | number | Maximum price in dollars |
| market | string | canada, global, or all (default: all) |
| limit | number | Max products (1-50, default: 12) |
search_brandsDiscover brands by ethical values, country, or category.
| Parameter | Type | Description |
|-----------|------|-------------|
| country | string | Country of origin |
| values | string[] | Ethical values |
| category | string | Product category |
| brand | string | Brand name to look up |
| market | string | Market scope |
| limit | number | Max brands (1-20, default: 10) |
refine_searchRefine a previous search by adding/removing filters. Takes the intent object from a prior search_products response and applies modifications — no need to re-query from scratch.
{
"intent": { "...from previous response..." },
"modifications": [
{ "action": "add", "field": "values", "value": "organic" },
{ "action": "remove", "field": "values", "value": "vegan" },
{ "action": "modify", "field": "priceMax", "value": 30 }
]
}
get_valuesList all 21 supported ethical/ownership values (women-owned, b-corp, organic, etc.).
get_categoriesList all 17 supported product categories.
get_countriesList all supported countries of origin (currently Canada and USA).
AI Agent (Claude, GPT, Cursor)
│
│ MCP (stdio)
▼
┌─────────────────────────┐
│ MCP Server (this pkg) │
│ 6 tools │
└───────────┬─────────────┘
│ H
... [View full README on GitHub](https://github.com/chhavimishra/originselect-mcp-server#readme)