Skip to main content
Glama

Productboard MCP Server

get_companies.ts866 B
import { Tool } from "@modelcontextprotocol/sdk/types.js"; import productboardClient from "../productboard_client.js"; const getCompaniesTool: Tool = { "name": "get_companies", "description": "Returns a list of all companies. This API is paginated and the page limit is always 100", "inputSchema": { "type": "object", "properties": { "page": { "type": "number", "default": 1 } } } } interface GetCompaniesRequest { page?: number } const getCompanies = async (request: GetCompaniesRequest): Promise<any> => { let endpoint = "/companies" if (request.page && request.page > 1) { endpoint += `?pageOffset=${(request.page - 1) * 100}` } return productboardClient.get(endpoint) } export { getCompaniesTool, GetCompaniesRequest, getCompanies }

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