Related MCP Server Resources

Explore more AI models, providers, and integration options:

  • Explore AI Models
  • Explore AI Providers
  • Explore MCP Servers
  • LangDB Pricing
  • Documentation
  • AI Industry Blog
  • Ramp MCP Server
  • MkDocs MCP Search Server
  • Fantasy Premier League MCP Server
  • File Finder MCP Server
  • Kintone MCP Server
Back to MCP Servers
LLM Responses MCP Server

LLM Responses MCP Server

Public
kstrikis/ephor-mcp

Enables multiple AI agents to share and read each other's responses to the same prompt, allowing them to reflect on what other LLMs said to the same question.

Verified
typescript
0 tools
May 30, 2025
Updated May 30, 2025

LLM Responses MCP Server

A Model Context Protocol (MCP) server that allows multiple AI agents to share and read each other's responses to the same prompt.

Overview

This project implements an MCP server with two main tool calls:

  1. submit-response: Allows an LLM to submit its response to a prompt
  2. get-responses: Allows an LLM to retrieve all responses from other LLMs for a specific prompt

This enables a scenario where multiple AI agents can be asked the same question by a user, and then using these tools, the agents can read and reflect on what other LLMs said to the same question.

Installation

# Install dependencies bun install

Development

# Build the TypeScript code bun run build # Start the server in development mode bun run dev

Testing with MCP Inspector

The project includes support for the MCP Inspector, which is a tool for testing and debugging MCP servers.

# Run the server with MCP Inspector bun run inspect

The inspect script uses npx to run the MCP Inspector, which will launch a web interface in your browser for interacting with your MCP server.

This will allow you to:

  • Explore available tools and resources
  • Test tool calls with different parameters
  • View the server's responses
  • Debug your MCP server implementation

Usage

The server exposes two endpoints:

  • /sse - Server-Sent Events endpoint for MCP clients to connect
  • /messages - HTTP endpoint for MCP clients to send messages

MCP Tools

submit-response

Submit an LLM's response to a prompt:

// 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...' } });

get-responses

Retrieve all LLM responses, optionally filtered by prompt:

// Example tool call const result = await client.callTool({ name: 'get-responses', arguments: { prompt: 'What is the meaning of life?' // Optional } });

License

MIT

Deployment to EC2

This project includes Docker configuration for easy deployment to EC2 or any other server environment.

Prerequisites

  • An EC2 instance running Amazon Linux 2 or Ubuntu
  • Security group configured to allow inbound traffic on port 62886
  • SSH access to the instance

Deployment Steps

  1. Clone the repository to your EC2 instance:

    git clone cd
  2. Make the deployment script executable:

    chmod +x deploy.sh
  3. Run the deployment script:

    ./deploy.sh

The script will:

  • Install Docker and Docker Compose if they're not already installed
  • Build the Docker image
  • Start the container in detached mode
  • Display the public URL where your MCP server is accessible

Manual Deployment

If you prefer to deploy manually:

  1. Build the Docker image:

    docker-compose build
  2. Start the container:

    docker-compose up -d
  3. Verify the container is running:

    docker-compose ps

Accessing the Server

Once deployed, your MCP server will be accessible at:

  • http://:62886/sse - SSE endpoint
  • http://:62886/messages - Messages endpoint

Make sure port 62886 is open in your EC2 security group!

Publicly Shared Threads0

Discover shared experiences

Shared threads will appear here, showcasing real-world applications and insights from the community. Check back soon for updates!

Share your threads to help others
Related MCPs5
  • Ramp MCP Server
    Ramp MCP Server

    A Model Context Protocol server that enables access to Ramp financial data through an in-memory data...

    Added May 30, 2025
  • MkDocs MCP Search Server
    MkDocs MCP Search Server

    Enables Claude and other LLMs to search through any published MkDocs documentation site using the Lu...

    Added May 30, 2025
  • Fantasy Premier League MCP Server
    Fantasy Premier League MCP Server

    A Model Context Protocol server that provides access to Fantasy Premier League data, allowing users ...

    Added May 30, 2025
  • File Finder MCP Server
    File Finder MCP Server

    Enables searching for files by name fragments via JSON-RPC or an HTTP REST API, with options for dir...

    1 tools
    Added May 30, 2025
  • Kintone MCP Server
    Kintone MCP Server

    A Model Context Protocol server that enables Claude and other AI assistants to access and update Kin...

    25 tools
    Added May 30, 2025