honeycomb_boards_list
Retrieve a list of all available boards from the honeycomb-mcp-server to manage or analyze system configurations efficiently.
Instructions
List all boards
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Input Schema (JSON Schema)
{
"properties": {},
"type": "object"
}
Implementation Reference
- index.ts:750-755 (handler)Handler for the honeycomb_boards_list tool. Dispatches to client.listBoards() and formats the response as MCP content.case "honeycomb_boards_list": { const response = await client.listBoards(); return { content: [{ type: "text", text: JSON.stringify(response) }], }; }
- index.ts:372-379 (schema)Tool schema definition including name, description, and empty input schema for honeycomb_boards_list.const boardsListTool: Tool = { name: "honeycomb_boards_list", description: "List all boards. Boards are a place to pin and save useful queries and graphs you want to retain for later reuse and reference.", inputSchema: { type: "object", properties: {}, }, };
- index.ts:782-798 (registration)Registration of boardsListTool in the list of tools exposed via ListToolsRequestSchema.server.setRequestHandler(ListToolsRequestSchema, async () => { return { tools: [ authTool, datasetsListTool, datasetGetTool, columnsListTool, queryCreateTool, queryGetTool, queryResultCreateTool, queryResultGetTool, datasetDefinitionsListTool, boardsListTool, boardGetTool, ], }; });
- index.ts:581-592 (helper)HoneycombClient.listBoards() method that performs the API call to list boards.async listBoards(): Promise<any> { const response = await fetch(`${this.baseUrl}/boards`, { method: "GET", headers: this.headers, }); if (!response.ok) { throw new Error(`Failed to list boards: ${response.statusText}`); } return await response.json(); }