UNPKG

productboard-mcp

Version:

Integrate the Productboard API into agentic workflows via MCP

17 lines (16 loc) 339 B
const addTool = { name: "add", description: "Add two numbers", inputSchema: { type: "object", properties: { a: { type: "number" }, b: { type: "number" }, }, required: ["a", "b"], } }; const add = async (req) => { return req.a + req.b; }; export { addTool, add };