loading…
Search for a command to run...
loading…
MCP server for Concierge, enabling AI agents to manage Discord customer support operations including tickets, AI, knowledge base, analytics, and more via natura
MCP server for Concierge, enabling AI agents to manage Discord customer support operations including tickets, AI, knowledge base, analytics, and more via natural language.
Local MCP server for Concierge — the Discord-native customer support platform.
Plug your AI agent (Claude Desktop, Cursor, Cline, or any MCP-compatible client) into your Concierge support server and operate the entire support stack via natural language. 200+ tools cover ticket lifecycle, AI configuration, knowledge base, panels, automations, analytics, billing, Discord communication, and more.
"Set up Concierge for my SaaS — deploy the panel in #support, give @Mod and @Admin agent access, and configure SLA to 30 minutes for high-priority tickets."
"Show me a CSAT report for the last 30 days, then suggest a reply for ticket #142."
"Bulk-close every ticket older than 7 days that has no agent response, and DM the customer a transcript."
"Snooze ticket #88 until tomorrow 9am ET, and flag the customer as VIP."
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"concierge": {
"command": "npx",
"args": ["-y", "concierge-mcp"],
"env": {
"CONCIERGE_GUILD_ID": "YOUR_DISCORD_GUILD_ID",
"CONCIERGE_MCP_KEY": "YOUR_MCP_API_KEY"
}
}
}
}
Restart Claude Desktop. You should see "concierge" in the MCP servers list, with all 200+ tools available.
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"concierge": {
"command": "npx",
"args": ["-y", "concierge-mcp"],
"env": {
"CONCIERGE_GUILD_ID": "YOUR_DISCORD_GUILD_ID",
"CONCIERGE_MCP_KEY": "YOUR_MCP_API_KEY"
}
}
}
}
Use the same command/args/env shape — every MCP client supports stdio servers.
CONCIERGE_MCP_KEY)This package is a thin stdio proxy. When your MCP client launches it, it:
https://api.conciergetickets.net/api/v1/guilds/{GUILD_ID}/mcpThe local binary is small and stateless. Your guild's data stays on Concierge's infrastructure.
update_panel_config / update_guild_configRun npx -y concierge-mcp and call tools/list to see the full live catalog.
GET https://api.conciergetickets.net/api/v1/public/openapi.json — full OpenAPI 3.1 spec for the REST APIGET https://api.conciergetickets.net/api/v1/public/schema.json — parsed Prisma schema (every model, field, enum)MIT
Add this to claude_desktop_config.json and restart Claude Desktop.
{
"mcpServers": {
"concierge-mcp": {
"command": "npx",
"args": []
}
}
}