npm @verityscore/mcp-serverstdioupdated 1mo ago
MCP (Model Context Protocol) server for Verity Score — the Shopify-first GEO audit platform.
¿Qué puedes hacer con Verity Score?
@verityscore/mcp-server
MCP (Model Context Protocol) server for Verity Score — the Shopify-first GEO audit platform.
5 Tools
| 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 |
Quick Start
Use the hosted server (recommended)
Add to your Claude Desktop or MCP client config:
{
"mcpServers": {
"verity-score": {
"url": "https://mcp.verityscore.io/mcp"
}
}
}
Run locally
npx @verityscore/mcp-server
The server starts on http://localhost:3100/mcp.
Test with curl
# 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}'
Architecture
- Transport: Streamable HTTP (stateless)
- Auth: None (rate-limited to 10 req/min/IP)
- Protocol: MCP v2025-03-26
- SDK:
@modelcontextprotocol/sdkv1.x
Tools Detail
get_geo_score
Returns 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_readiness
Real-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_recommendations
Returns top 3 actionable fixes sorted by revenue impact.
Input: { "domain": "mybrand.com" }
Output: { "totalIssues": 42, "topRecommendations": [{ "priority": 1, "title": "...", "fix": "..." }] }
explain_topic
Expert 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_info
Checklists and benchmarks for 15 e-commerce verticals. Without argument, lists all verticals.
Input: { "vertical": "beauty" }
Output: { "checklist": { "requiredContent": [...], "expectedTrust": [...] }, "benchmarks": {...} }
Links
- Hosted MCP: https://mcp.verityscore.io/mcp
- Website: https://verityscore.io
- Free Audit: https://verityscore.io/fr/
- Knowledge Base: https://verityscore.io/en/kb/
- Agent Card: https://verityscore.io/.well-known/agent-card.json
License
MIT
Instalación
Añade Verity Score a tu cliente. Elige el que uses.
claude mcp add mcp-server -- npx -y @verityscore/mcp-servercodex mcp add mcp-server -- npx -y @verityscore/mcp-serveramp mcp add mcp-server -- npx -y @verityscore/mcp-server{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@verityscore/mcp-server"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@verityscore/mcp-server"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"mcp-server","command":"npx","args":["-y","@verityscore/mcp-server"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@verityscore/mcp-server"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@verityscore/mcp-server"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@verityscore/mcp-server"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp-server": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@verityscore/mcp-server"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp-server": {
"command": {
"path": "npx",
"args": [
"-y",
"@verityscore/mcp-server"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @verityscore/mcp-serverRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Puntuación
39 / 100
Incompleta
- Documentación22/25
- Mantenimiento16/25
- Confianza6/20
- Capacidad0/15
- Instalación12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 52 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Historial de versiones
| Versiones | Publicada |
|---|---|
| 1.0.2Última | 11 jul 2026 |
| 1.0.0 | 10 abr 2026 |