Mern Chat MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Mern Chat MCP Serverlogin as user@test.com with password pass123"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mern_chat_app MCP server
Generated from https://github.com/yogsgehlot/Mern-Chat-App (commit 21caed2360bb39358ee031eb29e521a1a1ae1c90).
Setup
pip install -e .(orpip install -r requirements.txtif provided separately).Copy
.env.exampleto.envand fill in the values below, or have your deployment platform inject them as environment variables directly - nothing here contains real credentials.Run:
python server.py
Related MCP server: Polybrain MCP Server
Required environment variables
Variable | Secret? | Purpose |
| no | Base URL of the running mern_chat_app API instance |
Transport
Two transports, selected via MCP_TRANSPORT:
stdio(default) - the standard subprocess transport most MCP hosts use.streamable-http- hosts this server over HTTP/HTTPS at/mcp, so it can run as a standalone network service. Configure with:HOST(default0.0.0.0),PORT(default8000)MCP_TLS_CERTFILE/MCP_TLS_KEYFILE- set both to serve HTTPS directly; otherwise plain HTTP is served (fine behind a TLS-terminating proxy/ingress).
Example:
MCP_TRANSPORT=streamable-http PORT=8000 python server.py
Tools
register_user - Register a new user account and receive a JWT token in the response.
login_user - Authenticate a user with email and password and receive a JWT token in the response.
search_users - Search or list all users except the authenticated user; requires JWT Bearer token from login or registration (user-login auth, not a static API key).
access_chat - Create or fetch a one-to-one chat with another user; requires JWT Bearer token from login or registration.
fetch_chats - Fetch all chats for the authenticated user sorted by most recently updated; requires JWT Bearer token from login or registration.
create_group_chat - Create a new group chat; requires JWT Bearer token. The users field must be a JSON-stringified array of user ObjectId strings, not a native JSON array.
rename_group_chat - Rename an existing group chat; requires JWT Bearer token from login or registration.
remove_from_group - Remove a user from a group chat; requires JWT Bearer token from login or registration.
add_to_group - Add a user to a group chat; requires JWT Bearer token from login or registration.
get_chat_messages - Retrieve all messages for a chat; requires JWT Bearer token from login or registration.
send_message - Send a new message in a chat and update the chat latestMessage; requires JWT Bearer token from login or registration.
This server cannot be deployed
Maintenance
Related MCP Connectors
Chat with your Zihin.ai agents, list them and load platform skills from any MCP client.
Messaging tools for AI agents: send messages, manage chats, groups and channels.
Real-time chat hub for AI agents — Claude Code, Cursor, Cline, Codex over MCP or REST.
Manage SiteGPT chatbots and account resources through the SiteGPT API v2.
Related MCP Servers
- FlicenseNot gradedqualityFmaintenanceEnables interaction with Rocket.Chat instances through MCP protocol. Allows users to manage chat operations and integrate with Rocket.Chat servers using natural language commands.6-
- AlicenseAqualityDmaintenanceEnables AI agents to connect to and chat with multiple LLM models (OpenAI, OpenRouter, custom endpoints) with conversation history management and model switching capabilities.36 npm2MIT
- AlicenseAqualityDmaintenanceEnables interaction with Telegram chat history, including text, photos, and documents, via the GramJS MTProto userbot. It provides tools for searching chats, syncing message history, and downloading media files for local analysis.732 npmMIT
- AlicenseAqualityCmaintenanceEnables interaction with iMessage through a BlueBubbles server, allowing users to read, search, and send messages directly from MCP clients. It supports comprehensive chat management features including reactions, group chat moderation, message scheduling, and contact lookups.331MIT