A favicon of Real-time Chat Application

Real-time Chat Application

Build engaging real-time chat experiences effortlessly. Leverage Supabase for instant messaging capabilities and a seamless user interface with React and Chakra UI. Get started quickly with easy setup and deployment on Netlify.

Installation

Installing for Claude Desktop

Manual Configuration Required

This MCP server requires manual configuration. Run the command below to open your configuration file:

npx mcpbar@latest edit -c claude

This will open your configuration file where you can add the Real-time Chat Application MCP server manually.

Full-stack real-time chat

Netlify Status

Install

npm install to setup dependencies

Supabase variables

Create a .env file with VITE_SUPABASE_URL and VITE_SUPABASE_KEY (see env.example)

Setup your Supabase project

The following database table is required:

FieldType
idBIGINT
usernameVARCHAR
textTEXT
countryVARCHAR
is_authenticatedBOOLEAN
timestamptimestamp

SQL query if not using the Supabase interface:

CREATE TABLE messages (
  id bigint GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY,
  username VARCHAR NOT NULL,
  text TEXT NOT NULL,
  country VARCHAR,
  is_authenticated BOOLEAN DEFAULT FALSE,
  timestamp timestamp default now() NOT NULL
);

Note: If you're using Supabase interface, don't forget to tick Enable Realtime setting after you created the table.

Setup GitHub authentication (optional)

Follow instrunction here

Dev

npm run dev to run server on port 3000

Build

npm run build to build the react client

Demo

https://random-chat.netlify.app

'demo'

Share:
Details:
  • Stars


    0
  • Forks


    0
  • Last commit


    2 years ago
  • Repository age


    3 months
  • License


    Apache-2.0
View Repository

Auto-fetched from GitHub .

MCP servers similar to Real-time Chat Application:

 

 
 
  • Stars


  • Forks


  • Last commit


 

 
 
  • Stars


  • Forks


  • Last commit


 

 
 
  • Stars


  • Forks


  • Last commit


Real-time Chat Application: MCP Server – MCP.Bar