问别人
一个MCP服务器,允许您的AI助手访问其他LLM。通过单一界面查询OpenAI、Google和OpenRouter上的数百个模型,包括模型发现、基于使用情况的收藏夹和自动丰富(Elo评级、定价、知识截断)。包括跨多个模型系列的深入研究工作和图像生成。
为Claude Desktop(CDA)安装
- 安装 紫外线 —
brew install uv(macOS/Linux与Homebrew)或winget install astral-sh.uv(Windows)。看 docs/install.md 对于其他平台。 - 下载 最新的
ask-another.mcpb从 发布. - 双击 这
.mcpb文件-ClaudeDesktop打开一个安装对话框并提示您输入API密钥。 - 粘贴至少一个 提供者密钥--OpenAI(
sk-…)Google AI Studio(Gemini)或OpenRouter(sk-or-…).把其他的留空。 - 单击启用。 首次启动通过uv下载Python依赖项(约30s);之后,亚秒。
安装克劳德代码(CC)
- 安装 紫外线 —
brew install uv(macOS/Linux与Homebrew)或winget install astral-sh.uv(Windows)。看 docs/install.md 对于其他平台。 - 添加市场并安装:
/plugin marketplace add matthewgjohnson/ask-another
/plugin install ask-another@ask-another- 输入您的密钥:打开
/plugin→ 问别人 → 配置选项,粘贴至少一个提供程序密钥,然后保存。跑/reload-plugins申请。 - 可选的:启用自动更新
/plugin→ 市场 →matthewgjohnson/ask-another因此,未来的版本将在CC启动时安装。
其他MCP客户端(Cursor、Windsurf等)
对于没有MCPB或插件支持的客户端,请手动添加服务器。配置示例:
{
"mcpServers": {
"ask-another": {
"command": "uvx",
"args": ["--from", "git+https://github.com/matthewgjohnson/ask-another", "ask-another"],
"env": {
"PROVIDER_OPENAI": "sk-your-openai-key",
"PROVIDER_GEMINI": "your-google-key",
"PROVIDER_OPENROUTER": "sk-or-your-openrouter-key"
}
}
}
}你能做什么
- “询问GPT-5.2对这种架构的看法”→
completion - “双子座有哪些型号?”→
search_models - “研究2026年WebAssembly的状态”→
start_research - “为我的项目生成徽标”→
generate_image - “请注意,DeepSeek有利于创意写作”→
annotate_models
查看中的所有10个工具 参考.
了解更多
从源头构建
git clone https://github.com/matthewgjohnson/ask-another
cd ask-another
make mcpb # builds ask-another.mcpb然后双击 .mcpb 安装在Claude Desktop中。
