Check if an MCP server is safe before you spend money on it
evaluate_service checks any MCP server's reachability, governance declarations, tool definition quality, and audit endpoints, returning a trust score from 0 to 100 with a recommendation. Pass it a server URL and get back a clear verdict: PROCEED, CAUTION, HIGH RISK, or DO NOT TRANSACT.
Free to use. No API key required. Works from any MCP client.
Each evaluation runs six checks against the target MCP server. The trust score is a weighted composite of all six.
/.well-known/agent.json discovery fileThe trust score maps to a plain-language recommendation so agents and developers can make fast decisions.
Connect to the Agentic Platform MCP endpoint, then call evaluate_service with the URL of the MCP server you want to evaluate.
claude mcp add agentic-platform --transport http https://api.asalvocreative.com/mcp
{
"mcpServers": {
"agentic-platform": {
"url": "https://api.asalvocreative.com/mcp"
}
}
}
npx -y @smithery/cli@latest install agentic-platform--andysalvo.run.tools --client claude
evaluate_service({
server_url: "https://example.com/mcp",
task_context: "I need to use this server for code generation"
})
Service Trust Evaluation
========================
Target: https://example.com/mcp
Trust Score: 62/100
Recommendation: PROCEED WITH CAUTION
Checks:
PASS Server reachable (238ms response time)
PASS Valid MCP endpoint (12 tools found)
PASS HTTPS enabled
FAIL No /.well-known/agent.json found
FAIL No audit endpoint
WARN 3 tools missing descriptions
WARN No governance declarations
Summary: Server is functional but lacks transparency.
Review tool definitions before authorizing payments.
Run an evaluation before connecting to any MCP server you have not used before. This is especially important before authorizing payments, sharing sensitive data, or delegating critical tasks to a third-party service.
AI agents can call evaluate_service programmatically as part of their workflow. Before an agent transacts with a new MCP service, it can check the trust score and only proceed if the score meets a threshold.
The Agentic Platform is an MCP server that provides free agent diagnostics and expert skill files. In addition to the service evaluator, it offers an MCP linter, agent health check, and cost estimator -- all free, no API key required.