Token导航 LogoToken导航TokenDH.com
Rival MCP logo
开发工具stdio官方级别未说明来源级核验

Rival MCP

MCP Server

rival-mcp

rival-mcp 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. Quick Start npx rival-mcp No API key required. All data is served from the public rival.tips API. Configuration Claude Code Add to your .claude/settings.json (project-level) or ~/.claude/settings.json (global): { "mcpServers": { "rival": { "command": "npx", "args": ["-y", "rival-mcp"] } } } Claude Desktop 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"] } } } Cursor Add to your Cursor MCP settings (.cursor/mcp.json): { "mcpServers": { "rival": { "command": "npx", "args": ["-y", "rival-mcp"] } } } Windsurf Add to your Windsurf MCP config: { "mcpServers": { "rival": { "command": "npx", "args": ["-y", "rival-mcp"] } } } Available Tools list-models List 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: "List all Anthropic models" "Show me free models" "What models support vision?" get-model Get 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: "Get details on claude-3.7-sonnet" "What are the benchmarks for gpt-4.1?" compare-models Compare 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: "Compare GPT-4.1 vs Claude 3.7 Sonnet" "How does Gemini 2.5 Pro stack up against GPT-4.1 and Claude Sonnet?" search-models Search 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: "Find models good at coding" "Search for cheap reasoning models" Development # Install dependencies npm install # Run in development mode npm run dev # Build for production npm run build # Run the built server npm start How It Works 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 — only tools. All data is read-only and publicly available. Data Source All model data comes from rival.tips, an AI model comparison platform featuring: 60+ AI models with benchmarks, pricing, and capability data Side-by-side comparisons with shared challenge responses Community-driven AI duel voting and rankings Pre-generated showcase responses across coding, creative, and reasoning tasks License MIT

工具数

4

提示词数

0

GitHub Stars

1

资源数

0
JavaScriptClaude开发工具Claude DesktopClaudeCursorWindsurf

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

nuance-dev

提供方

nuance-dev

最后核验

2026/5/18 02:16

运行时

Node.js

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

命令预览

npx -y rival-mcp [object Object]

详细介绍

rival-mcp

MCP server for querying AI model comparison data from rival.tips

该服务器允许AI编码助手——Claude Code、Cursor、Windsurf和任何兼容MCP的客户端——在不离开编辑器的情况下,本地查询模型基准、定价、功能和并排比较。

快速开始

npx rival-mcp

不需要API密钥。所有数据都来自公共竞争对手.tips API。

配置

克劳德代码

添加到您的 .claude/settings.json (项目层面)或 ~/.claude/settings.json (全球):

{
  "mcpServers": {
    "rival": {
      "command": "npx",
      "args": ["-y", "rival-mcp"]
    }
  }
}

克劳德桌面版

添加 ~/Library/Application Support/Claude/claude_desktop_config.json (macOS)或 %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "rival": {
      "command": "npx",
      "args": ["-y", "rival-mcp"]
    }
  }
}

光标

添加到光标MCP设置(.cursor/mcp.json):

{
  "mcpServers": {
    "rival": {
      "command": "npx",
      "args": ["-y", "rival-mcp"]
    }
  }
}

帆板运动

添加到您的Windsurf MCP配置中:

{
  "mcpServers": {
    "rival": {
      "command": "npx",
      "args": ["-y", "rival-mcp"]
    }
  }
}

可用工具

list-models

列出所有具有可选过滤功能的AI模型。

参数:

参数类型说明
providerstring(可选)按提供程序筛选: OpenAI, Anthropic, Google, Meta, Mistral等等。
categorystring(可选)按类别筛选: flagship, reasoning, coding, small, free, image-gen
capabilitystring(可选)按功能筛选: chat, code, vision, image-gen, function-calling
qstring(可选)跨名称、ID、提供者和描述的自由文本搜索

示例提示:

  • “列出所有Anthropic模特”
  • “显示免费模型”
  • “哪些模型支持愿景?”

get-model

获取有关特定模型的详细信息——基准、定价、功能、独特功能和提供商可用性。

参数:

参数类型说明
idstring(必填)型号ID,例如。 gpt-4.1, claude-3.7-sonnet, gemini-2.5-pro

示例提示:

  • “获取claude-3.7-onnet的详细信息”
  • “gpt-4.1的基准是什么?”

compare-models

并排比较2-3个模型——基准、定价、功能和共同挑战。

参数:

参数类型说明
modelsstring(必填)逗号分隔的模型ID(2-3)。例子: gpt-4.1,claude-3.7-sonnet

示例提示:

  • “比较GPT-4.1与克劳德3.7十四行诗”
  • “Gemini 2.5 Pro与GPT-4.1和Claude Sonnet相比如何?”

search-models

当您不知道确切的型号ID时,按名称、描述或功能搜索型号。

参数:

参数类型说明
querystring(必填)搜索查询,例如。 vision, cheap coding, fast reasoning

示例提示:

  • “寻找擅长编码的模型”
  • “搜索廉价的推理模型”

发展

# Install dependencies
npm install

# Run in development mode
npm run dev

# Build for production
npm run build

# Run the built server
npm start

运作原理

此MCP服务器通过stdio(标准输入/输出)使用 模型上下文协议当人工智能助手需要模型比较数据时,它会调用适当的工具,该工具从竞争对手.tips公共API获取数据并返回结构化JSON。

服务器不公开任何资源或提示,只公开工具。所有数据都是只读的,公开可用。

数据源

所有模型数据均来自 竞争对手tips,一个AI模型比较平台,其特点是:

  • 60多个具有基准、定价和能力数据的AI模型
  • 与共享挑战响应进行并排比较
  • 社区驱动的AI决斗投票和排名
  • 跨编码、创意和推理任务预先生成的展示响应

许可证

麻省理工学院

目录标签

目录标签

JavaScriptClaude开发工具aimodelsprovidersAI模型比较本地部署基准测试定价查询能力分析多模型对比

支持客户端

Claude DesktopClaudeCursorWindsurf

接入字段

传输方式(transport,传输协议)

stdio

鉴权方式(authType,认证方式)

api-key

运行时(runtime,运行环境)

Node.js

来源包(packageName,安装包名)

rival-mcp

工具数量(toolCount,工具数)

4

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

stdioapi-key部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

来源信息

rival-mcp logo

MCP.so

mcp.so

/server/rival-mcp/nuance-dev

rival-mcp 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. Quick Start npx rival-mcp No API key required. All data is served from the public rival.tips API. Configuration Claude Code Add to your .claude/settings.json (project-level) or ~/.claude/settings.json (global): { "mcpServers": { "rival": { "command": "npx", "args": ["-y", "rival-mcp"] } } } Claude Desktop 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"] } } } Cursor Add to your Cursor MCP settings (.cursor/mcp.json): { "mcpServers": { "rival": { "command": "npx", "args": ["-y", "rival-mcp"] } } } Windsurf Add to your Windsurf MCP config: { "mcpServers": { "rival": { "command": "npx", "args": ["-y", "rival-mcp"] } } } Available Tools list-models List 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: "List all Anthropic models" "Show me free models" "What models support vision?" get-model Get 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: "Get details on claude-3.7-sonnet" "What are the benchmarks for gpt-4.1?" compare-models Compare 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: "Compare GPT-4.1 vs Claude 3.7 Sonnet" "How does Gemini 2.5 Pro stack up against GPT-4.1 and Claude Sonnet?" search-models Search 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: "Find models good at coding" "Search for cheap reasoning models" Development # Install dependencies npm install # Run in development mode npm run dev # Build for production npm run build # Run the built server npm start How It Works 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 — only tools. All data is read-only and publicly available. Data Source All model data comes from rival.tips, an AI model comparison platform featuring: 60+ AI models with benchmarks, pricing, and capability data Side-by-side comparisons with shared challenge responses Community-driven AI duel voting and rankings Pre-generated showcase responses across coding, creative, and reasoning tasks License MIT

rival-mcp logo

MCP World

mcpworld.com

/detail/ee9f065fb73c756edf6995412128c998

该服务提供AI模型的基准测试、定价、能力和并排比较数据的查询功能,支持多种AI编码助手原生查询。

rival logo

AIBase MCP

mcp.aibase.com

/zh/server/1639703143057203890

全面解析Rival MCPMCP Server的核心功能、安装配置和实用案例。作为顶级Model Context Protocol服务器,Rival MCP能让AI助手访问实时数据、执行操作,为您提供更智能的工作体验和自动化解决方案。

继续浏览同类 MCP