org.singchat/singchat

MCPcommunitylive
v0.2.0org.singchatUnknownUpdated 2mo ago

Free live chat and AI support agent. Auto-create a workspace and embed from your AI editor.

Endpoint healthlive
checked 1 day ago · 473ms
100% of the last 4 checks reached this endpoint
Works in
ClaudeCursorCopilotChatGPTGemini

Inferred from the transports this listing declares (streamable-http). A client not listed here hasn’t been ruled out — it just isn’t something Forge can confirm.

Automatically indexed from public sources. Not yet verified by the developer on Forge.Claim this listing →
2mo agoLast update
Package
Authororg.singchat
LicenseUnknown
Version0.2.0
Sourcemcp-registry
Trust Status
B
60/100Good
Listed in Forge index+10/10
Publisher identity verified+0/30
Publisher: this listing has no repository on file, so `forge publish` cannot verify ownership automatically. Use "Claim this listing" above — Forge reviews these by hand.
Domain verification+0/10
Not currently available for this listing type — the domain-verification check only runs for npm-backed packages today, so this row cannot be earned here yet regardless of what's hosted at the domain.
Prompt-injection scan · clean+30/30
Obfuscation / exfil scan · clean+20/20
StatusCommunity-indexed
PublisherUnverified
SignatureUnsigned
Domain
Provenance
DependenciesNot audited
Tool surface17 tools · none privileged
Security scan✓ Cleanvlive · 1d agoHow well does this scan work?
PROMPTtool:configure_agent#systemPromptReferences the system prompt
EvalsNone
IndexedJul 16, 2026

Verification confirms publisher identity (repo ownership), not code safety. The security scan covers known CVEs and suspicious install scripts.

Tools

17 tools · none privileged
Observed live from the vendor's endpoint1d ago

Read from a real MCP initialize → tools/list handshake against the declared endpoint. No tool was ever invoked — tools/list is the read-only introspection call the protocol defines for this. It reflects what the server advertised at that moment; a hosted endpoint is not pinned to any version and can change without notice.

  • https://mcp.singchat.org17 tools · 473ms
pingHealth check for the SingChat MCP server. Returns 'pong' and whether this request is authenticated to a workspace.

Health check for the SingChat MCP server. Returns 'pong' and whether this request is authenticated to a workspace.

No input schema was published for this tool.

singchat_setupGet the user up and running with SingChat live-chat. Call this FIRST. If no authenticated workspace is configured, this creates a brand-new free workspace and returns a short-lived, single-use browser claim link plus the website embed snippet. The user chooses their own sign-in details in the brows…

Get the user up and running with SingChat live-chat. Call this FIRST. If no authenticated workspace is configured, this creates a brand-new free workspace and returns a short-lived, single-use browser claim link plus the website embed snippet. The user chooses their own sign-in details in the brows…

ParameterTypeDescription
namestringOptional workspace/brand name for a newly created workspace. Ignored if a key is already set.
get_embed_snippetReturn the SingChat chat-widget embed code for this workspace's web inbox, in three flavors: plain HTML, React (useEffect), and Next.js (next/script). Requires a workspace API key. Optionally pass `platform` to get just one flavor.

Return the SingChat chat-widget embed code for this workspace's web inbox, in three flavors: plain HTML, React (useEffect), and Next.js (next/script). Requires a workspace API key. Optionally pass `platform` to get just one flavor.

ParameterTypeDescription
platformstringWhich snippet to return. Omit to get all three.
claim_accountReturn the link to claim (permanently secure) this SingChat workspace by setting an email and password. Use this for workspaces that were auto-created via MCP so the user does not lose access. The link is single-use and expires after 15 minutes. Requires an authenticated legacy workspace.

Return the link to claim (permanently secure) this SingChat workspace by setting an email and password. Use this for workspaces that were auto-created via MCP so the user does not lose access. The link is single-use and expires after 15 minutes. Requires an authenticated legacy workspace.

No input schema was published for this tool.

list_conversationsList the workspace's support conversations (agent/inbox view), newest activity first. Optionally filter by status or a free-text search over the contact name/email and last message. Returns a compact list: id, contact name, status, unreadCount, last message preview, updatedAt.

List the workspace's support conversations (agent/inbox view), newest activity first. Optionally filter by status or a free-text search over the contact name/email and last message. Returns a compact list: id, contact name, status, unreadCount, last message preview, updatedAt.

ParameterTypeDescription
statusstringOnly conversations with this status.
searchstringFree-text match on contact name/email and the last message preview.
limitintegerMax conversations to return (default 100).
get_conversationFetch a single conversation with its contact details and the most recent messages (oldest→newest).

Fetch a single conversation with its contact details and the most recent messages (oldest→newest).

ParameterTypeDescription
conversationId*stringThe conversation id (from list_conversations).
reply_to_conversationSend an agent reply through a supported SingChat real-time inbox. This takes the conversation over from the AI and broadcasts the message to the visitor and agent inbox. Email, Telegram, and WhatsApp conversations are rejected before any change.

Send an agent reply through a supported SingChat real-time inbox. This takes the conversation over from the AI and broadcasts the message to the visitor and agent inbox. Email, Telegram, and WhatsApp conversations are rejected before any change.

ParameterTypeDescription
conversationId*stringThe conversation id to reply in.
content*stringThe reply text to send to the visitor.
resolve_conversationMark a conversation as RESOLVED (closes it). The visitor's widget will no longer show it as active.

Mark a conversation as RESOLVED (closes it). The visitor's widget will no longer show it as active.

ParameterTypeDescription
conversationId*stringThe conversation id to resolve.
add_knowledgeTrain the AI agent by adding a knowledge source. type='url' crawls a website (up to 50 pages); type='qa' stores a single question/answer pair. Ingestion is asynchronous, the source starts as PENDING; poll `list_knowledge` for READY status.

Train the AI agent by adding a knowledge source. type='url' crawls a website (up to 50 pages); type='qa' stores a single question/answer pair. Ingestion is asynchronous, the source starts as PENDING; poll `list_knowledge` for READY status.

ParameterTypeDescription
type*string'url' to crawl a website, or 'qa' to add a question/answer pair.
urlstringWebsite root URL to crawl. Required when type='url'.
questionstringThe question. Required when type='qa'.
answerstringThe answer. Required when type='qa'.
list_knowledgeList all knowledge documents for this workspace with their processing status (PENDING | PROCESSING | READY | FAILED) and chunk counts. Use this to check whether items added via add_knowledge have finished training.

List all knowledge documents for this workspace with their processing status (PENDING | PROCESSING | READY | FAILED) and chunk counts. Use this to check whether items added via add_knowledge have finished training.

No input schema was published for this tool.

search_knowledgeSemantic search over the workspace knowledge base. Returns the most relevant chunks (with source document title and similarity score) for a query. Only searches documents that have finished training (status READY).

Semantic search over the workspace knowledge base. Returns the most relevant chunks (with source document title and similarity score) for a query. Only searches documents that have finished training (status READY).

ParameterTypeDescription
query*stringThe search query / user question.
topKintegerMax number of chunks to return (default 5).
configure_agentConfigure this workspace's AI support agent. All fields are optional, only the fields you pass are updated; the rest keep their current values. Call with no fields to just read back the current configuration. Does not touch or return any API keys.

Configure this workspace's AI support agent. All fields are optional, only the fields you pass are updated; the rest keep their current values. Call with no fields to just read back the current configuration. Does not touch or return any API keys.

NOTEIn parameter systemPrompt: References the system promptThe agent's system prompt / persona and answering rules.
ParameterTypeDescription
enabledbooleanTurn the automated AI agent on (true) or off (false).
systemPromptstringThe agent's system prompt / persona and answering rules.
greetingMessagestringFirst message visitors see when they open the chat. Pass an empty string to clear it.
modelstringChat model id, e.g. gpt-4o-mini.
providerModestring'platform' = platform-hosted keys (billed via AI credits); 'byok' = bring your own key.
set_keywordsAdd a keyword auto-reply rule: when an inbound message matches any of the keywords, the bot replies with the given text. Good for canned FAQ-style triggers (e.g. keyword 'invoice' -> 'Download it from the billing page').

Add a keyword auto-reply rule: when an inbound message matches any of the keywords, the bot replies with the given text. Good for canned FAQ-style triggers (e.g. keyword 'invoice' -> 'Download it from the billing page').

ParameterTypeDescription
keywords*arrayTrigger words/phrases (case-insensitive).
reply*stringThe reply text to send.
matchTypestringCONTAINS (default) = keyword appears anywhere in the message; EXACT = whole message equals the keyword.
manage_faqList, create, update, or delete this workspace's FAQ items (shown in the chat widget and usable by the AI agent). Set `action` to 'list' | 'create' | 'update' | 'delete'. 'create' needs `question` + `answer`; 'update' and 'delete' need `id`.

List, create, update, or delete this workspace's FAQ items (shown in the chat widget and usable by the AI agent). Set `action` to 'list' | 'create' | 'update' | 'delete'. 'create' needs `question` + `answer`; 'update' and 'delete' need `id`.

ParameterTypeDescription
action*stringWhich FAQ operation to run.
idstringFAQ item id. Required for 'update' and 'delete'.
questionstringQuestion text. Required for 'create'; optional for 'update'.
answerstringAnswer text. Required for 'create'; optional for 'update'.
enabledbooleanWhether the FAQ item is visible/active. Optional for 'create' and 'update'.
get_analyticsReturn a compact analytics summary for this workspace over the last `days` days (default 30): conversation counts + resolution rate, message volume + AI share, plus a live snapshot of today (UTC).

Return a compact analytics summary for this workspace over the last `days` days (default 30): conversation counts + resolution rate, message volume + AI share, plus a live snapshot of today (UTC).

ParameterTypeDescription
daysintegerLook-back window in days for the conversation/message stats (default 30).
searchSearch SingChat for relevant documents. When called with a workspace API key, this searches that workspace knowledge base; without a key it searches SingChat's own help content (what SingChat is, adding the chat widget, MCP setup, free tier, AI training, channels, white label, pricing). Returns a l…

Search SingChat for relevant documents. When called with a workspace API key, this searches that workspace knowledge base; without a key it searches SingChat's own help content (what SingChat is, adding the chat widget, MCP setup, free tier, AI training, channels, white label, pricing). Returns a l…

ParameterTypeDescription
query*stringThe search query or user question.
fetchFetch the full text of a single document by id, using an id returned by the search tool. With a workspace API key this reads a knowledge document from that workspace; without a key it reads a SingChat help article. Returns id, title, text, url, and optional metadata.

Fetch the full text of a single document by id, using an id returned by the search tool. With a workspace API key this reads a knowledge document from that workspace; without a key it reads a SingChat help article. Returns id, title, text, url, and optional metadata.

ParameterTypeDescription
id*stringThe document id returned by the search tool.

17 of 17 tools published a description.

Tool names and descriptions are written by the publisher and shown verbatim as inert text. They are the strings an MCP client passes to a model, so Forge scans them for prompt-injection patterns — any finding appears with the security scan above. “Privileged” is a keyword match on the tool name, not an audit of what the tool does: a benign-sounding name can still do anything.

About

Free live chat and AI support agent. Auto-create a workspace and embed from your AI editor.

Keywords
mcp
Alternatives
Comparing tool surfaces…

No dependency coverage

This entry publishes no npm package, so Forge has no dependency tree for it. That is a gap in coverage — not a statement that it has no dependencies.