MCP Catalogs
首页

loki-mcp vs sequentialthinking

并排对比,帮你在这两个 MCP server 之间做选择。

loki-mcp
by grafana
sequentialthinking
by modelcontextprotocol
Stars★ 141★ 85,748
30天用量
综合分5175
官方
分类
可观测性开发者工具运维基建
AI / LLM 工具开发者工具效率工具
实现语言GoTypeScript
最近提交本月本月

loki-mcp · 概述

一个用于查询 Grafana Loki 日志的成熟 MCP 服务器,文档全面,支持多种部署方式。

sequentialthinking · 概述

Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。

loki-mcp · 使用场景

  • 在调试过程中让 AI 助手能够查询系统日志
  • 将日志查询功能集成到 AI 驱动的监控工作流中
  • 为非技术团队成员提供对 Loki 日志的自然语言访问

sequentialthinking · 使用场景

  • 规划复杂系统迁移并进行风险评估
  • 需要逐步分析的调试生产环境问题
  • 比较具有条件分支的架构选项

loki-mcp · 安装

安装

从源码构建

go build -o loki-mcp-server ./cmd/server
./loki-mcp-server

使用 Docker

docker build -t loki-mcp-server .
docker run --rm -i loki-mcp-server

Claude Desktop 配置

{
  "mcpServers": {
    "lokiserver": {
      "command": "/path/to/loki-mcp-server",
      "env": {
        "LOKI_URL": "http://localhost:3100",
        "LOKI_ORG_ID": "your-org-id"
      },
      "autoApprove": ["loki_query"]
    }
  }
}

sequentialthinking · 安装

安装

**Claude Desktop**: 添加到您的 claude_desktop_config.json 文件中:

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

**VS Code**: 使用安装按钮或手动配置:

{
  "servers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}

**Docker**:

{
  "mcpServers": {
    "sequentialthinking": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "mcp/sequentialthinking"
      ]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。