Mern Chat MCP Server
Click on "Install 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 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
- Flicense-qualityFmaintenanceEnables 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.3112MIT
- 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.716MIT
- AlicenseAqualityBmaintenanceEnables 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
Related MCP Connectors
Real-time chat hub for AI agents — Claude Code, Cursor, Cline, Codex over MCP or REST.
List, configure, chat with, analyse and embed your Echo AI assistants.
Run AI customer support from your terminal: conversations, knowledge base, and chat widget.
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/priyankapsi/17JulyFriday_MCP_MernChat'
If you have feedback or need assistance with the MCP directory API, please join our Discord server