AgentHubAgentHub

blacksmith

MCP ServerMCP Registry官方收录

io.github.grahamnotgrant/blacksmith · v0.1.1

MCP server for Blacksmith CI - query runs, analyze test failures, detect flaky tests.

概览

blacksmith 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "blacksmith": {
      "command": "npx",
      "args": [
        "-y",
        "blacksmith-mcp"
      ],
      "env": {
        "BLACKSMITH_ORG": "<BLACKSMITH_ORG>"
      }
    }
  }
}

环境变量

BLACKSMITH_ORG必填

Your Blacksmith organization name

BLACKSMITH_SESSION_COOKIE可选secret

Session cookie (auto-extracted from Chrome if not set)

相关资源

统一 Manifest

{
  "id": "io.github.grahamnotgrant/blacksmith",
  "type": "mcp-server",
  "version": "0.1.1",
  "displayName": "blacksmith",
  "description": "MCP server for Blacksmith CI - query runs, analyze test failures, detect flaky tests.",
  "repository": {
    "url": "https://github.com/grahamnotgrant/blacksmith-mcp",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "blacksmith-mcp",
        "version": "0.1.1",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "BLACKSMITH_ORG",
            "description": "Your Blacksmith organization name",
            "isRequired": true
          },
          {
            "name": "BLACKSMITH_SESSION_COOKIE",
            "description": "Session cookie (auto-extracted from Chrome if not set)",
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.grahamnotgrant/blacksmith",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.grahamnotgrant%2Fblacksmith/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
blacksmith — MCP Server 安装与配置 · AgentHub