clarvia-mcp-server
Enables auditing of npm package dependencies to evaluate their agent-readiness and quality scores using the AEO (Agent Engine Optimization) standard.
Allows for auditing Python package dependencies to assess their compatibility, accessibility, and trust signals for use by AI agents.
Clarvia
The AEO (Agent Engine Optimization) Standard for AI Agent Tools
Score, discover, and validate 15,400+ AI agent tools for quality, accessibility, and agent-readiness.
Website · npm · API Docs · Leaderboard
Install (one command)
npx -y clarvia-mcp-serverOr add to any MCP client config:
{
"mcpServers": {
"clarvia": {
"command": "npx",
"args": ["-y", "clarvia-mcp-server"]
}
}
}No install needed? Use the remote endpoint directly:
https://clarvia-api.onrender.com/mcp/What is Clarvia?
Clarvia assigns an AEO Score (0-100) to any AI tool, API, or MCP server — measuring how easily AI agents can discover, integrate, and trust it. Think of it as "Lighthouse for AI agent tools."
4 scoring dimensions (25 points each):
Dimension | What it measures |
API Accessibility | Endpoint existence, response speed, auth documentation |
Data Structuring | Schema definition, pricing clarity, error structure |
Agent Compatibility | MCP server presence, robots.txt, sitemap/discovery |
Trust Signals | Uptime, documentation quality, update frequency |
Plus an optional Onchain Bonus (+25) for web3 services.
For Agents
Before calling any external tool, check if it's agent-ready.
Clarvia gives your agent a quality gate for tool selection:
Agent workflow:
Need a payment API?
-> search_services("payment API")
-> clarvia_gate_check(top_result)
-> PASS? Use it. FAIL? clarvia_find_alternatives("payment")
-> After use: clarvia_submit_feedback(result)Agent Grades:
AGENT_NATIVE(80+) — Built for agents, full MCP/OpenAPI supportAGENT_FRIENDLY(60-79) — Good API, minor gapsAGENT_POSSIBLE(40-59) — Usable with effortAGENT_HOSTILE(0-39) — Avoid for autonomous use
For Tool Makers
See your tool the way AI agents see it.
Your AEO score — how agent-ready your tool is today
Specific gaps — missing OpenAPI spec? No MCP server? Poor error messages?
Category ranking — how you compare to alternatives
Actionable fixes — each dimension tells you exactly what to improve
Quick Start by Framework
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"clarvia": {
"command": "npx",
"args": ["-y", "clarvia-mcp-server"]
}
}
}claude mcp add clarvia -- npx -y clarvia-mcp-serverAdd to .cursor/mcp.json:
{
"mcpServers": {
"clarvia": {
"command": "npx",
"args": ["-y", "clarvia-mcp-server"]
}
}
}Add to .windsurf/mcp.json:
{
"mcpServers": {
"clarvia": {
"command": "npx",
"args": ["-y", "clarvia-mcp-server"]
}
}
}Add to .cline/mcp.json or VS Code settings:
{
"mcpServers": {
"clarvia": {
"command": "npx",
"args": ["-y", "clarvia-mcp-server"]
}
}
}Add to ~/.continue/config.json:
{
"experimental": {
"modelContextProtocolServers": [
{
"transport": {
"type": "stdio",
"command": "npx",
"args": ["-y", "clarvia-mcp-server"]
}
}
]
}
}https://clarvia-api.onrender.com/mcp/No local installation required. Works with any MCP client supporting Streamable HTTP transport.
See examples/ for ready-to-copy config files.
MCP Tools — Node.js Server (16 tools)
Discovery & Search
Tool | Description |
| Search 15,400+ indexed AI tools by keyword, category, or minimum AEO score |
| List all tool categories with service counts |
| Platform-wide statistics — total services, score distributions |
Scanning & Evaluation
Tool | Description |
| Full AEO audit on any URL — agent discoverability, API quality, docs, MCP readiness |
| Detailed scoring breakdown for a scanned service |
| Submit a new service for indexing and scoring |
Agent Safety & Gating
Tool | Description |
| Pass/fail safety check — agent grade with boolean result |
| Batch-check up to 10 URLs in one call |
| Find higher-rated alternatives in a category |
| Live probe — HTTP reachability, latency, OpenAPI, MCP, agents.json |
Setup Management
Tool | Description |
| Register your tool setup for AEO scoring per tool |
| Compare your setup against higher-scored alternatives |
| Personalized upgrade recommendations |
Feedback & Support
Tool | Description |
| Report tool usage outcomes for reliability data |
| Report bugs, request features, flag issues |
| List existing tickets and known issues |
Python MCP Server (24 tools)
The backend also runs a Python-based MCP server with extended capabilities:
Tool | Description |
| Search indexed tools with advanced filters |
| Full AEO audit |
| Detailed scoring breakdown |
| Browse categories |
| Platform statistics |
| Submit new service |
| Pass/fail safety gate |
| Batch URL checking |
| Category alternatives |
| Live accessibility probe |
| Report usage outcomes |
| Trigger rescan of a profiled service |
| Get category ranking for a service |
| Get community feedback for a service |
| Trending tools by score changes |
| Find similar tools to a given service |
| Audit npm/pip package dependencies |
| Get featured/curated tools |
| See most-requested tool categories |
Access via remote endpoint: https://clarvia-api.onrender.com/mcp/
Claude Code Skills
Pre-built skills for Claude Code that use Clarvia MCP tools:
Skill | Command | Description |
Scan |
| Run a full AEO audit on any tool |
Compare |
| Head-to-head dimension comparison |
Recommend |
| Get top tool picks for a use case |
Quick setup:
claude mcp add clarvia -- npx -y clarvia-mcp-server
cp .claude/skills/clarvia-*.md /your/project/.claude/skills/See SKILLS.md for full installation and usage details.
REST API (110+ endpoints)
Full OpenAPI spec: /openapi.json
Key endpoints:
Method | Endpoint | Description |
|
| Search and filter services |
|
| Full-text search |
|
| Quick score lookup |
|
| Top-scored services |
|
| Browse categories |
|
| Run AEO audit |
|
| Intent-based recommendations |
|
| Find similar tools |
|
| Trending services |
|
| Curated picks |
|
| Platform statistics |
|
| Compare up to 4 tools |
|
| Create service profile |
|
| Most-demanded categories |
|
| Machine-readable feed for registries |
Rate limits: 10 scans/hour (free) · 100/hour (with X-API-Key)
Agent Discovery Endpoints
Clarvia is designed to be discovered by AI agents:
Endpoint | URL |
OpenAPI Spec |
|
agents.json |
|
llms.txt |
|
llms-full.txt |
|
robots.txt |
|
Sitemap |
|
MCP Endpoint |
|
Architecture
scanner/
backend/ # FastAPI (Python 3.12+) — 110+ API endpoints + MCP server
app/
checks/ # 13 scoring sub-factors
routes/ # REST API endpoints
services/ # Supabase, PDF generation, enrichment
mcp_server.py # Python MCP server (24 tools)
frontend/ # Next.js + Tailwind — clarvia.art
mcp-server/ # Node.js MCP server (TypeScript, 16 tools)
cli/ # CLI scanner tool
examples/ # Framework integration configs
github-action/ # GitHub Actions for CI/CD AEO checksDevelopment
# Backend
cd backend && pip install -r requirements.txt
uvicorn app.main:app --reload --port 8000
# Frontend
cd frontend && npm install && npm run dev
# MCP Server
cd mcp-server && npm install && npm run dev
# Docker (full stack)
docker compose up --buildIntegrations
Platform | Type | Link |
npm | MCP Server | |
PyPI | LangChain integration | |
GitHub Actions | CI/CD AEO check | |
Smithery | MCP Registry | |
MCP Registry | Official registry |
|
Glama.ai | MCP Directory | |
mcp.so | MCP Directory |
Links
Website: clarvia.art
npm: clarvia-mcp-server
PyPI: clarvia-langchain
MCP Registry:
io.github.digitamaz/clarviaRemote MCP:
https://clarvia-api.onrender.com/mcp/
License
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/clarvia-project/scanner'
If you have feedback or need assistance with the MCP directory API, please join our Discord server