- Home
- MCP servers
- MCP Channel Talk
MCP Channel Talk
- typescript
0
GitHub Stars
typescript
Language
5 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"scarfunk-mcp-channel-io": {
"command": "npx",
"args": [
"-y",
"mcp-channel-io",
"--",
"--access-key",
"YOUR_ACCESS_KEY",
"--secret-key",
"YOUR_SECRET_KEY",
"--ssl-off"
],
"env": {
"CHANNEL_TALK_X_ACCESS_KEY": "YOUR_ACCESS_KEY",
"CHANNEL_TALK_X_ACCESS_SECRET": "YOUR_SECRET_KEY"
}
}
}
}You can access Channel Talk data through the MCP channel to let AI assistants read chats and messages from Channel Talk using the official OPEN API. This MCP server integrates Channel Talk’s chat data with your AI workflows, enabling you to query chat lists and retrieve recent messages for context and automation.
How to use
Use an MCP client to connect to the Channel Talk MCP server and perform actions that retrieve chat lists and chat messages. You can filter searches by chat status, tags, administrator name, priority, and by requester details such as name, email, company, and phone number. When fetching chat messages, you will receive up to the latest 10 messages for each chat.
The server is designed to reduce response size for smooth AI operation by performing intermediate mapping. You’ll receive only the necessary information in the final payload.
How to install
Prerequisites: ensure you have Node.js 18+ and npm or yarn installed.
Choose one of the supported installation methods and follow the steps.
{
"mcpServers": {
"channel_io": {
"command": "npx",
"args": [
"-y",
"mcp-channel-io",
"--",
"--access-key",
"YOUR_ACCESS_KEY",
"--secret-key",
"YOUR_SECRET_KEY",
"--ssl-off"
]
}
}
}
Additional configuration and notes
If you prefer using Smithery to run the MCP, you can use the following setup to run the MCP Channel IO tool via Smithery CLI.
{
"mcpServers": {
"channel-io": {
"command": "npx",
"args": [
"-y",
"@smithery/cli@latest",
"run",
"@scarfunk/mcp-channel-io",
"--key",
"your-smithery-key...",
"--profile",
"your-profile-name..."
]
}
}
}
Available tools
listChats
Query and retrieve the list of chats with filtering options such as status, tags, admin name, and priority.
listChatMessages
Retrieve the most recent messages for a given chat, up to 10 messages, with optional filters for requester details.