zero-slop-mcp-server
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., "@zero-slop-mcp-serverSubmit assessment for jane: decisionUnderstanding 4, riskDetection 5"
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.
zero-slop-mcp-server
MCP remoto con una tool: zero_slop_submit_assessment. Recibe el análisis del harness (Claude Code), valida, calcula total y lo guarda en Convex assessments vía evaluations.save.
Clerk es solo la web. Esta tool se autentica con Bearer → sha256 → mcpTokens. Nunca getUserIdentity().
githubUsername es el evaluado (él mismo, o un senior). Si el senior evalúa a alguien sin fila, Convex puede crear el developer — la cuenta Clerk se vincula después en el onboarding.
Setup
Copia
convex-dropin/mcp.ts→convex/mcp.tsyconvex-dropin/evaluations.ts→convex/evaluations.ts. Despliega Convex.Al emitir tokens (en la web), guarda
sha256(plaintext)enmcpTokens.tokenHash. No borres filas: usárevokedAt.Copia el skill
skills/zero-slop-assessment/al harness de Claude Code.Configura env y arranca:
cp .env.example .env
npm install
npm run devMCP:
http://127.0.0.1:3000/mcp(Bearer obligatorio)Health:
http://127.0.0.1:3000/health(sin auth)
Related MCP server: Arkheia Hallucination Detection MCP
Cliente (Claude Code / Cursor)
{
"mcpServers": {
"zero-slop": {
"url": "http://127.0.0.1:3000/mcp",
"headers": {
"Authorization": "Bearer DEVELOPER_MCP_TOKEN"
}
}
}
}El LLM puntúa con el skill (references/rubric.md) y llama la tool. No envía scores.total: avg(decisionUnderstanding, riskDetection), un decimal. explanationQuality se guarda y tiene feedback, no entra en el total. Cada llamada inserta (historial).
Sin el skillId correcto la tool rechaza. El agente debe buscar el skill en dos sitios: skills instaladas del harness, y este repo (skills/zero-slop-assessment/SKILL.md). Con uno alcanza. El MCP remoto no ve el disco; si no está en ninguno, te lo tiene que pedir.
Producción (Dokploy)
Dokploy ya trae Traefik + Let's Encrypt. No uses Caddy ni publiques 80/443 en el compose.
Lo más simple: una Application que construye el Dockerfile.
DNS A/AAAA de
mcp.tudominio.comal VPS de Dokploy.Nueva aplicación → Git o Compose. Si es Compose, el archivo es
compose.yml(serviciomcp). Compose path en Dokploy:./compose.yml.Environment:
HOST=0.0.0.0PORT=3000CONVEX_URL=https://….convex.cloudALLOWED_HOSTS=mcp.tudominio.com(Host header; Compose also acceptsMCP_DOMAIN)
Domains: host
mcp.tudominio.com, serviciomcp, puerto interno 3000, certificado Let's Encrypt.Health path:
/health(sin Bearer; ábrelo en el navegador para comprobar Traefik). MCP:https://mcp.tudominio.com/mcp(POST + Bearer; GET en el browser no es una página).
{
"mcpServers": {
"zero-slop": {
"url": "https://mcp.tudominio.com/mcp",
"headers": {
"Authorization": "Bearer DEVELOPER_MCP_TOKEN"
}
}
}
}Local sigue siendo npm run dev.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Pay-per-call AI evaluation MCP server. Score LLM outputs against benchmark rubrics via Workers AI.
MCP server providing access to the Scorecard API to evaluate and optimize LLM systems.
Related MCP Servers
AlicenseNot gradedqualityCmaintenanceProvides advanced evaluation tools for assessing AI safety, alignment, and performance of LLM outputs. Enables programmatic evaluation of quality, safety metrics like toxicity and PII detection, and operational metrics including carbon footprint and cost estimation.4Apache 2.0
Arkheia Hallucinationofficial
AlicenseNot gradedqualityBmaintenanceDetect fabrication and hallucination in any LLM output. Score responses from GPT-4o, Claude, Gemini, Llama and 30+ models. Free tier included.1MIT- AlicenseNot gradedqualityDmaintenanceEnables automated LLM red teaming by submitting asynchronous test runs, retrieving aggregated metrics, and accessing artifacts.4CC BY-SA 4.0
- AlicenseNot gradedqualityBmaintenanceEnables LLM evaluation and observability by uploading documents, building test sets, running RAG pipelines, and automatically scoring answers for groundedness, hallucination risk, retrieval quality, latency, and cost, with tools exposed to MCP-compatible clients.1MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/hallzyx/zero-slop-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server