Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"rival": {
"args": [
"-y",
"rival-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for querying AI model comparison data from rival.tips
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'rival-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked rival-mcp against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / analytics
Persistent memory using a knowledge graph
MCP Server for GCP environment for interacting with various Observability APIs.
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
An open-source AI agent that brings the power of Gemini directly into your terminal.
MCP Security Weekly
Get CVE alerts and security updates for io.github.nuance-dev/rival and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server for querying AI model comparison data from rival.tips
This server lets AI coding assistants — Claude Code, Cursor, Windsurf, and any MCP-compatible client — natively query model benchmarks, pricing, capabilities, and side-by-side comparisons without leaving your editor.
npx rival-mcp
No API key required. All data is served from the public rival.tips API.
Add to your .claude/settings.json (project-level) or ~/.claude/settings.json (global):
{
"mcpServers": {
"rival": {
"command": "npx",
"args": ["-y", "rival-mcp"]
}
}
}
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"rival": {
"command": "npx",
"args": ["-y", "rival-mcp"]
}
}
}
Add to your Cursor MCP settings (.cursor/mcp.json):
{
"mcpServers": {
"rival": {
"command": "npx",
"args": ["-y", "rival-mcp"]
}
}
}
Add to your Windsurf MCP config:
{
"mcpServers": {
"rival": {
"command": "npx",
"args": ["-y", "rival-mcp"]
}
}
}
list-modelsList all AI models with optional filtering.
Parameters:
| Parameter | Type | Description |
|---|---|---|
provider | string (optional) | Filter by provider: OpenAI, Anthropic, Google, Meta, Mistral, etc. |
category | string (optional) | Filter by category: flagship, reasoning, coding, small, free, image-gen |
capability | string (optional) | Filter by capability: chat, code, vision, image-gen, function-calling |
q | string (optional) | Free-text search across name, ID, provider, and description |
Example prompts:
get-modelGet detailed information about a specific model — benchmarks, pricing, capabilities, unique features, and provider availability.
Parameters:
| Parameter | Type | Description |
|---|---|---|
id | string (required) | Model ID, e.g. gpt-4.1, claude-3.7-sonnet, gemini-2.5-pro |
Example prompts:
compare-modelsCompare 2-3 models side by side — benchmarks, pricing, capabilities, and shared challenges.
Parameters:
| Parameter | Type | Description |
|---|---|---|
models | string (required) | Comma-separated model IDs (2-3). Example: gpt-4.1,claude-3.7-sonnet |
Example prompts:
search-modelsSearch for models by name, description, or capability when you don't know the exact model ID.
Parameters:
| Parameter | Type | Description |
|---|---|---|
query | string (required) | Search query, e.g. vision, cheap coding, fast reasoning |
Example prompts:
# Install dependencies
npm install
# Run in development mode
npm run dev
# Build for production
npm run build
# Run the built server
npm start
This MCP server communicates over stdio (standard input/output) using the Model Context Protocol. When an AI assistant needs model comparison data, it calls the appropriate tool, which fetches data from the rival.tips public API and returns structured JSON.
The server exposes no resources or prompts —