35a0b2b715
- 27 base tools: channels, messaging, users, reactions, files, DMs - Team management: invite/remove users, get stats, list members - Slash commands: execute /remind, /poll, etc. - Webhook management: incoming and outgoing webhooks - System tools: server config, logs, bulk status updates - Channel admin: create, invite, leave, delete channels - Read-only mode for safe exploration - Dual token support (bot + PAT) for enhanced security - Apache 2.0 licensed
72 lines
1.7 KiB
Go
72 lines
1.7 KiB
Go
package messaging
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/karti-ai/mattermost-mcp-server/pkg/log"
|
|
"github.com/karti-ai/mattermost-mcp-server/pkg/mattermost"
|
|
"github.com/karti-ai/mattermost-mcp-server/pkg/params"
|
|
"github.com/karti-ai/mattermost-mcp-server/pkg/to"
|
|
"github.com/mark3labs/mcp-go/mcp"
|
|
"github.com/mark3labs/mcp-go/server"
|
|
)
|
|
|
|
const (
|
|
GetThreadToolName = "mattermost_get_thread"
|
|
)
|
|
|
|
var (
|
|
GetThreadTool = mcp.NewTool(
|
|
GetThreadToolName,
|
|
mcp.WithDescription("Read all messages in a thread conversation"),
|
|
mcp.WithString("post_id", mcp.Required(), mcp.Description("The root post ID of the thread")),
|
|
)
|
|
)
|
|
|
|
func init() {
|
|
registerGetThreadTool()
|
|
}
|
|
|
|
func registerGetThreadTool() {
|
|
tools := []server.ServerTool{
|
|
{Tool: GetThreadTool, Handler: GetThreadFn},
|
|
}
|
|
for _, t := range tools {
|
|
Tool.RegisterRead(t)
|
|
}
|
|
}
|
|
|
|
func GetThreadFn(ctx context.Context, req mcp.CallToolRequest) (*mcp.CallToolResult, error) {
|
|
log.Debugf("[Messaging] Called GetThreadFn")
|
|
|
|
args := req.GetArguments()
|
|
|
|
postID, err := params.GetString(args, "post_id")
|
|
if err != nil {
|
|
return to.Error(fmt.Errorf("[post_id] %v", err)), nil
|
|
}
|
|
|
|
client := mattermost.GetGlobalClient()
|
|
if client == nil {
|
|
return to.Error(fmt.Errorf("[internal] client not initialized")), nil
|
|
}
|
|
|
|
thread, err := client.GetPostThread(ctx, postID)
|
|
if err != nil {
|
|
return to.Error(fmt.Errorf("[thread] failed to get thread: %v", err)), nil
|
|
}
|
|
|
|
results := make([]map[string]interface{}, 0, len(thread.Posts))
|
|
for _, post := range thread.Posts {
|
|
results = append(results, SlimPost(post))
|
|
}
|
|
|
|
return to.Result(map[string]interface{}{
|
|
"posts": results,
|
|
"count": len(results),
|
|
"root_id": postID,
|
|
"has_replies": len(results) > 1,
|
|
}), nil
|
|
}
|