LLM Responses MCP Server
LLM 応答 MCP サーバー
複数の AI エージェントが同じプロンプトに対する互いの応答を共有および読み取ることができるモデル コンテキスト プロトコル (MCP) サーバー。
概要
このプロジェクトは、2 つの主要なツール呼び出しを使用して MCP サーバーを実装します。
submit-response: LLMがプロンプトに応答を送信できるようにするget-responses: LLM が特定のプロンプトに対する他の LLM からのすべての応答を取得できるようにします。
これにより、ユーザーが複数の AI エージェントに同じ質問をすることができ、その後、これらのツールを使用して、エージェントが他の LLM が同じ質問に対して何を言ったかを読み取って反映できるシナリオが可能になります。
Related MCP server: Converse MCP Server
インストール
# Install dependencies
bun install発達
# Build the TypeScript code
bun run build
# Start the server in development mode
bun run devMCP Inspectorによるテスト
このプロジェクトには、MCP サーバーのテストとデバッグを行うツールであるMCP Inspectorのサポートが含まれています。
# Run the server with MCP Inspector
bun run inspectinspectスクリプトはnpxを使用して MCP Inspector を実行し、ブラウザで MCP サーバーと対話するための Web インターフェイスを起動します。
これにより、次のことが可能になります。
利用可能なツールとリソースを調べる
異なるパラメータによるテストツール呼び出し
サーバーの応答を表示する
MCPサーバーの実装をデバッグする
使用法
サーバーは 2 つのエンドポイントを公開します。
/sse- MCPクライアントが接続するためのServer-Sent Eventsエンドポイント/messages- MCPクライアントがメッセージを送信するためのHTTPエンドポイント
MCPツール
送信応答
プロンプトに対して LLM の応答を送信します。
// Example tool call
const result = await client.callTool({
name: 'submit-response',
arguments: {
llmId: 'claude-3-opus',
prompt: 'What is the meaning of life?',
response: 'The meaning of life is...'
}
});レスポンスの取得
すべての LLM 応答を取得します (オプションでプロンプトでフィルタリング可能)。
// Example tool call
const result = await client.callTool({
name: 'get-responses',
arguments: {
prompt: 'What is the meaning of life?' // Optional
}
});ライセンス
マサチューセッツ工科大学
EC2へのデプロイ
このプロジェクトには、EC2 またはその他のサーバー環境への簡単なデプロイを可能にする Docker 構成が含まれています。
前提条件
Amazon Linux 2 または Ubuntu を実行する EC2 インスタンス
ポート 62886 で受信トラフィックを許可するように構成されたセキュリティ グループ
インスタンスへのSSHアクセス
展開手順
リポジトリを EC2 インスタンスにクローンします。
git clone <your-repository-url> cd <repository-directory>デプロイメント スクリプトを実行可能にします。
chmod +x deploy.shデプロイメント スクリプトを実行します。
./deploy.sh
スクリプトは次のようになります。
DockerとDocker Composeがまだインストールされていない場合はインストールします。
Dockerイメージをビルドする
コンテナをデタッチモードで起動する
MCP サーバーにアクセスできる公開 URL を表示します
手動展開
手動でデプロイする場合:
Docker イメージをビルドします。
docker-compose buildコンテナを起動します。
docker-compose up -dコンテナが実行中であることを確認します。
docker-compose ps
サーバーへのアクセス
展開されると、MCP サーバーは次の場所からアクセスできるようになります。
http://<ec2-public-ip>:62886/sse- SSEエンドポイントhttp://<ec2-public-ip>:62886/messages- メッセージエンドポイント
EC2 セキュリティ グループでポート 62886 が開いていることを確認してください。
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
- AlicenseAqualityBmaintenanceEnables multi-round brainstorming debates between multiple AI models like GPT, DeepSeek, and Ollama to produce synthesized final outputs. Users can orchestrate parallel model interactions where AI agents critique and refine each other's ideas to reach a consolidated conclusion.715867MIT
- AlicenseAqualityAmaintenanceEnables Claude to chat with various AI models and obtain multi-model consensus for complex decisions.32692MIT
- AlicenseNot gradedqualityBmaintenanceEnables AI coding agents to read each other's conversation history read-only and sanitized, so you can continue work across different tools without re-explaining context.MIT
- FlicenseNot gradedqualityCmaintenanceEnables users to leverage a mixture-of-agents architecture where multiple AI models discuss a question in parallel and a president model synthesizes the best answer.17
Related MCP Connectors
Collective memory for AI agents. One agent solves a bug — every agent gets the fix instantly.
A second opinion for AI agents: one prompt across several live Gonka models + roles, one call.
Shared knowledge base for AI agents. Semantic search across agents, no setup required — just a URL.
Appeared in Searches
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/kstrikis/ephor-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server