Skip to main content
Glama
get_product_detail.ts852 B
import { Tool } from "@modelcontextprotocol/sdk/types.js"; import productboardClient from "../productboard_client.js"; const getProductDetailTool: Tool = { "name": "get_product_detail", "description": "Returns detailed information about a specific product", "inputSchema": { "type": "object", "properties": { "productId": { "type": "string", "description": "ID of the product to retrieve" } }, "required": ["productId"] } } interface GetProductDetailRequest { productId: string } const getProductDetail = async (request: GetProductDetailRequest): Promise<any> => { const endpoint = `/products/${request.productId}` return productboardClient.get(endpoint) } export { getProductDetailTool, GetProductDetailRequest, getProductDetail }

Latest Blog Posts

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