// for AI agents
Use Trivia Devs in your AI agent.
Trivia Devs runs a public MCP server so your AI agent can pull community-ranked reviews, comparisons, and community-flagged warnings straight into the conversation — grounding stack decisions in real developer feedback instead of stale training data.
https://triviadevs.dev/api/mcp
// install
Connect in under a minute.
Claude Code
Run the CLI one-liner:
claude mcp add --transport http trivia-devs https://triviadevs.dev/api/mcp
Cursor
Add this to ~/.cursor/mcp.json:
{
"mcpServers": {
"trivia-devs": {
"url": "https://triviadevs.dev/api/mcp"
}
}
}Generic MCP client
Any client that speaks streamable HTTP can point at the same URL:
{
"mcpServers": {
"trivia-devs": { "type": "http", "url": "https://triviadevs.dev/api/mcp" }
}
}// tools
Five tools, real data.
best_for
Best community-ranked resources for a category (+ optional tag).
best_for({ category: "framework", tag: "react" })search_resources
Natural-language search of the catalogue.
search_resources({ query: "type-safe ORM for Postgres" })compare
Head-to-head of two resources.
compare({ a: "prisma", b: "drizzle" })avoid
Community-flagged resources to skip, with reasons.
avoid({ category: "framework" })get_resource
Full detail for one resource.
get_resource({ idOrSlug: "next-js" })// try asking your agent
Prompts to get started.
"What's the best auth library for a Next.js app right now?"
"Compare Prisma and Drizzle for a Postgres project."
"Any ORMs the community says to avoid?"
Prefer a plain-text overview instead? Read the machine-readable overview at /llms.txt.