UNPKG

@the_cfdude/productboard-mcp

Version:

Model Context Protocol server for Productboard REST API with dynamic tool loading

9 lines (8 loc) 243 B
#!/usr/bin/env node /** * Entry point for the Productboard MCP server */ import { ProductboardServer } from './productboard-server.js'; // Create and run the server const server = new ProductboardServer(); server.run().catch(console.error);