Memory Context Provider Server

MCP Testing interface for LLMs

Installation

Installing for Claude Desktop

Option 1: One-Command Installation

npx mcpbar@latest install Srish-ty/MCP-Testing-interface-for-LLMs -c claude

This command will automatically install and configure the Memory Context Provider Server MCP server for your selected client.

Option 2: Manual Configuration

Run the command below to open your configuration file:

npx mcpbar@latest edit -c claude

After opening your configuration file, copy and paste this configuration:

View JSON configuration
{
  "mcpServers": {
    "Memory Context Provider Server": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-server"
      ],
      "env": {}
    }
  }
}

Memory Context Provider (MCP) Server

A server that manages context for LLM interactions, storing and providing relevant context for each user.

Features

  • In-memory storage of user contexts
  • Context management with last 5 prompts
  • RESTful API endpoints
  • TypeScript support

Setup

  1. Install dependencies:

    npm install
    
  2. Start the development server:

    npm run dev
    

API Endpoints

POST /context/:userId

Add a new prompt to user's context and get updated context.

Request body:

{
  "prompt": "Your prompt here"
}

Response:

{
  "context": "Combined context from last 5 prompts"
}

GET /context/:userId

Get current context for a user.

Response:

{
  "context": "Current context"
}

DELETE /context/:userId

Clear context for a user.

Response:

{
  "message": "Context cleared"
}

Development

  • npm run dev: Start development server with hot reload
  • npm run build: Build TypeScript files
  • npm start: Run built files
Share:
Details:
  • Stars


    0
  • Forks


    1
  • Last commit


    3 months ago
  • Repository age


    3 months
View Repository

Auto-fetched from GitHub .

MCP servers similar to Memory Context Provider Server:

 

 
 
  • Stars


  • Forks


  • Last commit


 

 
 
  • Stars


  • Forks


  • Last commit


 

 
 
  • Stars


  • Forks


  • Last commit


Memory Context Provider Server: MCP Server – MCP.Bar