UNPKG

productboard-mcp

Version:

Integrate the Productboard API into agentic workflows via MCP

21 lines (20 loc) 665 B
import productboardClient from "../productboard_client.js"; const getCompanyDetailTool = { "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"] } }; const getCompanyDetail = async (request) => { const endpoint = `/companies/${request.companyId}`; return productboardClient.get(endpoint); }; export { getCompanyDetailTool, getCompanyDetail };