Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Chat App

FreeNot checked

FastMCP server exposing Pigeon chat REST APIs as LLM tools, enabling AI agents (e.g., Claude Desktop) to authenticate, fetch contacts, and send messages.

GitHubEmbed

About

FastMCP server exposing Pigeon chat REST APIs as LLM tools, enabling AI agents (e.g., Claude Desktop) to authenticate, fetch contacts, and send messages.

README

Purpose – This repository hosts the Model Context Protocol (MCP) server for my real‑time chat application.
It bridges AI agents (e.g., Claude Desktop) to the chat backend, letting them authenticate, fetch contacts/chats, read message history, and send messages—all in real‑time.

📚 Main Chat‑App Repository

https://github.com/Prajjwal2507/chat-app-pegion

📦 How to Configure Claude Desktop

TL;DR – Add the JSON snippet below to your Claude Desktop configuration and restart the app.

⚠️ Important Note on Cold Starts: This MCP server is hosted on a free tier instance on Render, which spins down after periods of inactivity. Before configuring the MCP server locally, please wake it up by visiting this link. (Don't worry if it says "Not Found"—that just means the server is awake and ready!)

1️⃣ Open the Config File

  1. Open Claude Desktop.
  2. Click the hamburger menu (☰) in the top‑left corner → Settings.
  3. In the left sidebar, click "Developer" (under Desktop app).
  4. Click the "Edit Config" button — this opens your claude_desktop_config.json file in your default code editor.

2️⃣ Paste the MCP Server Entry

Add (or replace) the "chat-app" object inside the "mcpServers" dictionary:

{
  "mcpServers": {
    "chat-app": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://chat-app-mcp-server.onrender.com/sse"
      ]
    }
  }
}

Note: If the file already contains other servers, just add the new "chat-app" block alongside them — keep the surrounding braces and commas correct.

3️⃣ Kill & Restart Claude Desktop

You must fully quit Claude (not just close the window) so it reloads the config.

Windows (PowerShell):

Stop-Process -Name "Claude" -Force

Windows (CMD):

taskkill /IM Claude.exe /F

macOS (Terminal):

pkill -x "Claude"

Then relaunch Claude Desktop from the Start menu / Applications folder.

4️⃣ Verify & Use

The plug icon will now show the available tools. Try these example prompts:

  • "Claude, log in to my chat app with email [email protected] and password ••••."
  • "Claude, list my contacts."
  • "Claude, send a message to Keshav saying 'Hey, how are you?'"

🛠️ Skills & Technologies Demonstrated

Category Tools / Libraries
MCP Framework FastMCP, HTTPX, Python 3.12
Real‑time Sync Socket.io (WebSocket broadcasting)
Deployment Render (public HTTPS endpoint) + UptimeRobot (keep‑alive ping)
Security Arcjet (rate‑limiting & bot protection)
Frontend Vite + React, Zustand, React‑Hot‑Toast
Version Control Git, GitHub
Testing / CI UptimeRobot (prevent Render cold‑starts)

🌐 Live Demo UI

https://new-chat-app-inky.vercel.app/

📚 Main Chat‑App Repository

https://github.com/Prajjwal2507/chat-app-pegion

from github.com/Prajjwal2507/chat-app-mcp-server

Installing Chat App

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/Prajjwal2507/chat-app-mcp-server

FAQ

Is Chat App MCP free?

Yes, Chat App MCP is free — one-click install via Unyly at no cost.

Does Chat App need an API key?

No, Chat App runs without API keys or environment variables.

Is Chat App hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Chat App in Claude Desktop, Claude Code or Cursor?

Open Chat App on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Chat App with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All communication MCPs