Mcp Smartscout — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mcp Smartscout (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
An MCP (Model Context Protocol) server that provides Claude Desktop access to SmartScout's Amazon marketplace intelligence data stored in Domo.
This MCP server enables Claude to query SmartScout's comprehensive Amazon marketplace database, including:
git clone https://github.com/smartscout/mcp-smartscout-domo.git
cd mcp-smartscout-domonpm install.env file from the example:cp .env.example .env.env with your credentials:DOMO_INSTANCE=your-instance
DOMO_ACCESS_TOKEN=your-access-tokennpm run buildAdd the following to your Claude Desktop configuration file:
Windows: %APPDATA%\Claude\claude_desktop_config.json macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"smartscout-domo": {
"command": "node",
"args": ["C:/Users/Aeciu/OneDrive/Desktop/Smartscout/mcp-smartscout-domo/dist/server.js"],
"env": {
"DOMO_INSTANCE": "recommercebrands",
"DOMO_ACCESS_TOKEN": "DDCIa8d82cba537ecf54032551681695985167811ebb95a8ea02"
}
}
}
}This server can now be deployed to Railway as a public HTTP API:
git add .
git commit -m "Add HTTP wrapper for Railway deployment"
git push origin mainDOMO_INSTANCE - Your Domo instanceDOMO_ACCESS_TOKEN - Your Domo access tokenAPI_KEYS - Comma-separated API keys (e.g., key1,key2,key3)CORS_ORIGINS - Allowed origins (e.g., https://yourdomain.com)Once deployed, Railway will provide a URL like https://your-app.railway.app
Test the deployment:
# Health check
curl https://your-app.railway.app/health
# List tools (requires API key)
curl -X POST https://your-app.railway.app/mcp \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"tools/list","params":{},"id":1}'See API.md for full API documentation.
#### smartscout_product_search Search for products by various criteria.
Example: Find products with "coffee maker" in title, priced $50-200, with 100+ reviews#### smartscout_product_details Get detailed information about a specific product including sellers.
Example: Get full details for ASIN B08N5WLMXB#### smartscout_product_history Get historical price and sales rank data for a product.
Example: Show 30-day history for ASIN B08N5WLMXB#### smartscout_top_products Find top-selling products in categories.
Example: Top 20 products in "Home & Kitchen" category#### smartscout_brand_search Search brands by name or performance metrics.
Example: Brands with >$100K monthly revenue and 30%+ growth#### smartscout_brand_details Get comprehensive brand information including top products and sellers.
Example: Full analysis of brand "Anker"#### smartscout_brand_coverage Analyze seller coverage for brands.
Example: Which sellers carry Nike products#### smartscout_brand_growth Find fastest-growing brands.
Example: Top 20 fastest growing brands with >$50K revenue#### smartscout_seller_search Search sellers by name, ID, or metrics.
Example: Sellers with >$500K monthly revenue and 95%+ positive feedback#### smartscout_seller_details Get detailed seller profile with products and brands.
Example: Full profile for seller ID A2VJCB1F3Q7JZX#### smartscout_seller_products List all products sold by a specific seller.
Example: Products from seller A2VJCB1F3Q7JZX with >50% buy box#### smartscout_top_sellers Find top sellers by various metrics.
Example: Top 20 sellers by 30-day revenue growth#### smartscout_keyword_search Find keywords with search volume and CPC data.
Example: Keywords containing "wireless" with >10K monthly searches#### smartscout_keyword_products Get products ranking for a specific keyword.
Example: Top organic and paid results for "bluetooth speaker"#### smartscout_product_keywords Find keywords that a product ranks for.
Example: All keywords where ASIN B08N5WLMXB ranks in top 50#### smartscout_keyword_brands Analyze brand presence for keywords.
Example: Which brands dominate "coffee maker" searches#### smartscout_market_analysis Comprehensive market analysis for categories.
Example: Full market analysis for "Pet Supplies" category#### smartscout_competitor_analysis Find and analyze competitors.
Example: Find competitors for ASIN B08N5WLMXB#### smartscout_opportunity_finder Discover market opportunities.
Example: Find low-competition subcategories with >$50K revenue#### smartscout_custom_query Execute custom SQL queries (SELECT only).
Example: SELECT * FROM PRODUCTS WHERE BRAND = 'Apple' LIMIT 10#### smartscout_system_info Get information about available databases and schemas.
Example: Show schema for products databaseHere are some example prompts you can use with Claude:
The server automatically limits results to prevent token overflow:
The server provides access to these SmartScout databases:
Use smartscout_system_info to explore available databases and their schemas.
This MCP server uses Domo's SQL query API. Key points about how queries work:
FROM dataset syntaxTo run in development mode:
npm run devTo run tests:
npm testFor issues or questions:
Copyright (c) 2024 SmartScout. All rights reserved.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.