# productboard-mcp

> MCP Server

This repository provides a Productboard MCP server that integrates the Productboard API into agentic workflows, offering tools to retrieve details about companies, components, features, notes, and products. This repository provides

## Overview

- **Category:** Productivity
- **Language:** TypeScript
- **Stars:** 13
- **Forks:** 1
- **Owner:** kenjihikmatullah
- **GitHub:** https://github.com/kenjihikmatullah/productboard-mcp
- **Created:** 2025-02-26T02:01:32+00:00
- **Updated:** 2025-03-21T09:38:32+00:00
- **Source:** https://model-context-protocol.com/servers/productboard-api-integration-agentic-workflows

## Setup

## Setup

### Access Token
Obtain your access token referring to [this guidance](https://developer.productboard.com/reference/authentication#public-api-access-token)

### Usage with Claude Desktop
To use this with Claude Desktop, add the following to your `claude_desktop_config.json`:

### NPX

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

## Tools

## Available Tools

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`
