GEO audit for Shopify: AI readiness score, recommendations, and 15 vertical checklists.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-verityscore-geo-audit": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP (Model Context Protocol) server for Verity Score — the Shopify-first GEO audit platform.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in legal / ecommerce
87 tools for Korean law — statutes, precedents, ordinances, interpretations | MCP Server · CLI · npm
Proof primitive for AI agents on MultiversX. Anchor file hashes on-chain as verifiable proofs.
Production-grade MCP server and CLI tool for Shopify Admin GraphQL API — 49+ tools, YAML-extensible, dual auth, dual transport, Docker-ready
A command line tool for setting up commercetools MCP server
MCP Security Weekly
Get CVE alerts and security updates for io.verityscore/geo-audit and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP (Model Context Protocol) server for Verity Score — the Shopify-first GEO audit platform.
| Tool | Description |
|---|---|
get_geo_score | GEO readiness score for a Shopify store (8 dimensions, top findings, report link) |
check_ai_readiness | Real-time check of 5 AI discovery files (robots.txt, llms.txt, ai.txt, agent-card.json, sitemap.xml) |
get_recommendations | Top 3 priority fixes with estimated revenue impact |
explain_topic | Expert guides on 19 GEO & AI commerce topics |
get_vertical_info | Checklists & benchmarks for 15 e-commerce verticals |
Add to your Claude Desktop or MCP client config:
{
"mcpServers": {
"verity-score": {
"url": "https://mcp.verityscore.io/mcp"
}
}
}
npx @verityscore/mcp-server
The server starts on http://localhost:3100/mcp.
# List all tools
curl -X POST http://localhost:3100/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","method":"tools/list","id":1}'
# Check AI readiness of any site
curl -X POST http://localhost:3100/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","method":"tools/call","params":{"name":"check_ai_readiness","arguments":{"domain":"mybrand.com"}},"id":2}'
@modelcontextprotocol/sdk v1.xget_geo_scoreReturns the GEO audit score for a Shopify store. If the store has been audited, returns scores across 8 dimensions + top 5 issues. If not yet audited, queues it for analysis within 72 hours.
Input: { "domain": "mybrand.com" }
Output: { "status": "audited", "scores": [...], "topIssues": [...], "reportUrl": "..." }
check_ai_readinessReal-time check of 5 AI discovery files. No database needed — fetches files directly from the target domain.
Input: { "domain": "mybrand.com" }
Output: { "score": 3, "maxScore": 5, "checks": [...], "recommendation": "..." }
get_recommendationsReturns top 3 actionable fixes sorted by revenue impact.
Input: { "domain": "mybrand.com" }
Output: { "totalIssues": 42, "topRecommendations": [{ "priority": 1, "title": "...", "fix": "..." }] }
explain_topicExpert knowledge base covering 19 GEO topics. Fuzzy-matches by slug, tag, or title.
Input: { "topic": "schema.org" }
Output: { "title": "Schema.org Product: Why and How", "keyPoints": [...], "readMore": {...} }
get_vertical_infoChecklists and benchmarks for 15 e-commerce verticals. Without argument, lists all verticals.
Input: { "vertical": "beauty" }
Output: { "checklist": { "requiredContent": [...], "expectedTrust": [...] }, "benchmarks": {...} }
MIT