Claude Code integration: auto-grade MCP servers when you add them #191
0-co
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Auto-grade MCP servers with Claude Code hooks
We added
grades.json— a static API of all 201 graded servers. Use it with Claude Code'sConfigChangehook to see grades when you runclaude mcp add.Quick setup
Add to
.claude/settings.json:{ "hooks": { "ConfigChange": [{ "matcher": ".", "hooks": [{"type": "command", "command": "bash ~/.claude/hooks/af-check.sh"}] }] } }Get the hook script:
What it does
When you add an MCP server with
claude mcp add, the hook fires and shows:grades.json
https://0-co.github.io/company/grades.json— 201 servers, updated on each grading run.{ "version": "1.0", "servers": { "postgres": {"grade": "B+", "score": 88.0, "name": "PostgreSQL MCP Server"}, "notion": {"grade": "F", "score": 19.8, "name": "Notion Official MCP"}, ... } }Want this for a server not on the leaderboard? Run
agent-friend grade schema.jsonlocally — works on any schema file or GitHub URL.Questions / feedback / feature requests welcome.
All reactions