Back to MCP directory
publicPublicdnsLocal runtime

Productboard

Productboard API的MCP服务集成

article

README

🚀 Productboard MCP 服务器

Productboard MCP 服务器可通过 MCP 将 Productboard API 集成到代理驱动的工作流程中,为工作流程的搭建和管理提供了便利。

✨ 主要特性

本工具提供了一系列实用的函数,用于获取 Productboard 平台上的各类信息,具体如下:

  1. get_companies:获取公司列表
  2. get_company_detail:获取公司详细信息
  3. get_components:获取组件列表
  4. get_component_detail:获取组件详细信息
  5. get_features:获取功能列表
  6. get_feature_detail:获取功能详细信息
  7. get_feature_statuses:获取功能状态列表
  8. get_notes:获取备注信息
  9. get_products:获取产品列表
  10. get_product_detail:获取产品详细信息

📦 安装指南

访问令牌

您需要根据 此指南 获取访问令牌,以便后续操作。

与 Claude Desktop 配合使用

若要将本服务器与 Claude Desktop 结合使用,需将以下内容添加到您的 claude_desktop_config.json 文件中:

NPX

{
  "mcpServers": {
    "productboard": {
      "command": "npx",
      "args": [
        "-y",
        "productboard-mcp"
      ],
      "env": {
        "PRODUCTBOARD_ACCESS_TOKEN": "<YOUR_TOKEN>"
      }
    }
  }
}

📄 许可证

该 MCP 服务器采用 MIT License 进行分发。这意味着您可以自由地使用、修改和分发此软件,但需遵循 MIT License 的相关条款和条件。如需了解详细信息,请查阅项目存储库中的 LICENSE 文件。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client