Skip to main content
Glama
get_component_detail.ts882 B
import { Tool } from "@modelcontextprotocol/sdk/types.js"; import productboardClient from "../productboard_client.js"; const getComponentDetailTool: Tool = { "name": "get_component_detail", "description": "Returns detailed information about a specific component", "inputSchema": { "type": "object", "properties": { "componentId": { "type": "string", "description": "ID of the component to retrieve" } }, "required": ["componentId"] } } interface GetComponentDetailRequest { componentId: string } const getComponentDetail = async (request: GetComponentDetailRequest): Promise<any> => { const endpoint = `/components/${request.componentId}` return productboardClient.get(endpoint) } export { getComponentDetailTool, GetComponentDetailRequest, getComponentDetail }

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