M

Mattermost

Post and read Mattermost channels.

·No reviews yet
Repo
Share:

About

Auto-generated

Mattermost is a Model Context Protocol server in the Communication category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

send_message
Post a message to a channel or user
list_channels
List channels the bot can access
search_messages
Search messages by query and date range

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Mattermost.

What is the Mattermost MCP used for?
The Mattermost MCP allows users to post and read messages from Mattermost channels. It integrates Mattermost communication directly into environments that support the Model Context Protocol.
How do I configure the Mattermost MCP with Cursor?
Configuration depends on the Cursor client's MCP management interface. Typically, you would add the Mattermost MCP's connection details, including its transport type (stdio) and any required API key, through the client's settings.
Does the Mattermost MCP require an API key for authentication?
Yes, the Mattermost MCP uses an API key for authentication. You will need to provide a valid API key to interact with your Mattermost instance.
What are the primary capabilities of the Mattermost MCP?
The Mattermost MCP's core capabilities include sending messages to Mattermost channels and retrieving messages from those channels. This facilitates integration for automated notifications or conversational interfaces.
Is there a cost associated with using the Mattermost MCP?
The Mattermost MCP itself is open-source and community-provided, so there is no direct cost for the MCP. However, the underlying Mattermost server and its licensing may incur costs depending on your deployment.
What is a potential limitation when using the Mattermost MCP?
A potential limitation is that the Mattermost MCP's functionality is restricted to posting and reading channel messages. It may not expose all advanced Mattermost features or administrative controls.

Install Mattermost

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "mattermost": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mattermost"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "mattermost": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mattermost"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "mattermost": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mattermost"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.