UNPKG

productboard-mcp

Version:

Integrate the Productboard API into agentic workflows via MCP

21 lines (20 loc) 631 B
import productboardClient from "../productboard_client.js"; const getNoteDetailTool = { "name": "get_note_detail", "description": "Returns detailed information about a specific note", "inputSchema": { "type": "object", "properties": { "noteId": { "type": "string", "description": "ID of the note to retrieve" } }, "required": ["noteId"] } }; const getNoteDetail = async (request) => { const endpoint = `/notes/${request.noteId}`; return productboardClient.get(endpoint); }; export { getNoteDetailTool, getNoteDetail };