Expert MCP
🧠 Expert MCP
AIモデルに「いつでも相談できる」上級専門家アドバイザーを装備しましょう。
下流モデルが複雑な問題に直面した際、このMCPツールを通じて事前に構成された高度なモデル(GPT-5.5、Claude Opus 4.7など)に問題を転送し、詳細な分析と専門的なアドバイスを得た上で、自身の判断と組み合わせて最終的な回答を導き出すことができます。
✨ 機能特性
🔌 OpenAI互換 — OpenAI形式のあらゆるアップストリームエンドポイント(OpenAI / DeepSeek / Qwen / vLLM / Ollamaなど)に接続可能
⚙️ 設定ファイル駆動 — すべてのパラメータは
config.jsonで一元管理され、コードの変更は不要📡 Streamable HTTP — MCPの最新標準に準拠したストリーミングHTTP転送、エンドポイント
/mcp🛠️ 豊富なツール説明 — 下流モデルが適切なタイミングで呼び出せるよう、丁寧に設計された
description🧩 3段構成の入力パラメータ —
question(必須)、context(背景)、focus(重点項目)📊 完全なログ — リクエストログとトークン使用量統計により、監視とトラブルシューティングが容易
Related MCP server: Consult LLM MCP
🏗️ 動作原理
┌─────────────────────────────────────────────────────────┐
│ 用户 (User) │
└───────────────────────────┬─────────────────────────────┘
│ 提问
▼
┌─────────────────────────────────────────────────────────┐
│ 下游模型 (Claude / GPT / Qwen …) │
│ │
│ 遇到复杂问题?→ 调用 consult_advanced_model 工具 │
└───────────────────────────┬─────────────────────────────┘
│ MCP Streamable HTTP
▼
┌─────────────────────────────────────────────────────────┐
│ Expert MCP Server │
│ (本项目 server.py) │
└───────────────────────────┬─────────────────────────────┘
│ OpenAI API 请求
▼
┌─────────────────────────────────────────────────────────┐
│ 上游高级模型 (GPT-5.5、Claude Opus 4.7 …) │
│ 返回深度分析意见 │
└─────────────────────────────────────────────────────────┘📦 クイックスタート
1. リポジトリのクローン
git clone https://github.com/MineJPGcraft/Expert-mcp.git
cd Expert-mcp2. 依存関係のインストール
pip install -r requirements.txtPython 3.10+を推奨します。仮想環境でのインストールを推奨します。
3. 設定ファイルの編集
config.json をコピーして編集します:
{
"host": "0.0.0.0",
"port": 8765,
"upstream": {
"base_url": "https://api.openai.com/v1",
"api_key": "sk-xxxxxxxxxxxxxxxxxxxx",
"model": "gpt-5.5",
"temperature": 0.3,
"max_tokens": 4096,
"timeout": 120,
"system_prompt": "你是一位顶尖的资深专家顾问,请对问题进行深入、严谨、可执行的分析。"
}
}設定項目の詳細は、以下の ⚙️ 設定リファレンス を参照してください。
4. サービスの起動
python server.py以下のログが表示されれば起動成功です:
2025-xx-xx | INFO | mcp-advisor | 上游模型: gpt-4o @ https://api.openai.com/v1
2025-xx-xx | INFO | mcp-advisor | MCP 监听: http://0.0.0.0:8765/mcpMCPエンドポイントアドレス:
http://127.0.0.1:8765/mcp🔧 クライアント接続
MCP Streamable HTTPをサポートするクライアント(Cherry Studio、Cline、Claude Codeなど)で、以下の設定を追加してください:
{
"mcpServers": {
"expert-advisor": {
"type": "streamableHttp",
"url": "http://127.0.0.1:8765/mcp"
}
}
}リモートデプロイの場合:
127.0.0.1をサーバーの実際のIPまたはドメイン名に置き換え、ファイアウォールで対応するポートが許可されていることを確認してください。
⚙️ 設定リファレンス
フィールド | 型 | デフォルト値 | 説明 |
| string |
| サービスのリッスンアドレス |
| integer |
| サービスのリッスンポート |
| string | — | アップストリームAPIのベースURL(OpenAI互換形式) |
| string | — | アップストリームAPIキー |
| string | — | アップストリームモデル名(例: |
| float |
| 生成温度。分析タスクでは低めに設定することを推奨 |
| integer |
| 1回のリクエストあたりの最大トークン数 |
| float |
| リクエストのタイムアウト秒数 |
| string | 内蔵デフォルト値 | 高度なモデルのシステムプロンプト。完全にカスタマイズ可能 |
環境変数による設定ファイルの切り替え
MCP_CONFIG=config.prod.json python server.py🛠️ ツール説明
下流モデルが呼び出せるツール:
consult_advanced_model
パラメータ | 型 | 必須 | 説明 |
| string | ✅ | 相談したい核心的な質問。できるだけ完全かつ明確に |
| string | ❌ | 背景情報(コードスニペット、ユーザーの要件、試行済みの解決策など) |
| string | ❌ | 高度なモデルに重点的に回答してほしい方向性 |
推奨される呼び出しシナリオ:
自身の確信度が80%未満の問題
ユーザーが深い思考、厳密な分析、または最適な解決策を明確に求めている場合
複雑なトレードオフを伴う多制約問題
段階的な推論が必要な数学、アルゴリズム、システム設計、難解なバグ
自身の結論を再検証する必要がある場合
推奨されない呼び出しシナリオ:
単なる挨拶や単純な情報検索
答えが明白な基礎的な質問
高頻度で繰り返される単純なタスク
🌐 アップストリームサービスの接続
config.json の upstream セクションを修正するだけで、異なるサービスプロバイダーに接続できます。
📋 依存関係
mcp>=1.2.0
openai>=1.40.0📄 ライセンス
MIT License © 2026 MCJPG
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseNot gradedqualityNot gradedmaintenanceAn OpenAI API-based MCP server that provides deep thinking and analysis capabilities, integrating with AI editor models to deliver comprehensive insights and practical solutions.
- AlicenseAqualityAmaintenanceAn MCP server that lets Claude Code consult stronger AI models (o3, Gemini 2.5 Pro, DeepSeek Reasoner) when you need deeper analysis on complex problems.1102129MIT
- AlicenseNot gradedqualityCmaintenanceEnables AI-to-AI consultation for critical thinking and complex reasoning via OpenRouter, allowing one AI to delegate tasks to another AI model.10MIT
- FlicenseNot gradedqualityBmaintenanceMCP server that lets Claude Code consult ChatGPT for a second opinion mid-task, with explicit context passed by the caller.
Related MCP Connectors
AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.
A paid remote MCP for OpenAI Codex agent coordination MCP, built to return verdicts, receipts, usage
MCP server for AI dialogue using various LLM models via AceDataCloud
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MineJPGcraft/Expert-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server