Skip to main content
Glama

Productboard MCP Server

import { Tool } from "@modelcontextprotocol/sdk/types.js"; import productboardClient from "../productboard_client.js"; const getCompanyDetailTool: Tool = { "name": "get_company_detail", "description": "Returns detailed information about a specific company", "inputSchema": { "type": "object", "properties": { "companyId": { "type": "string", "description": "ID of the company to retrieve" } }, "required": ["companyId"] } } interface GetCompanyDetailRequest { companyId: string } const getCompanyDetail = async (request: GetCompanyDetailRequest): Promise<any> => { const endpoint = `/companies/${request.companyId}` return productboardClient.get(endpoint) } export { getCompanyDetailTool, GetCompanyDetailRequest, getCompanyDetail }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kenjihikmatullah/productboard-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server