Skip to main content
Glama
tldv-public

tl;dv MCP for Zoom, Google Meet and MS Teams

Official
by tldv-public

get-highlights

Extract key moments from recorded meetings in Zoom, Google Meet, and MS Teams by providing a meeting ID to access important discussion points.

Instructions

Allows you to get highlights from a meeting by providing a meeting ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
meetingIdYes

Implementation Reference

  • MCP server.tool registration which includes the handler function that executes the get-highlights tool logic by calling tldvApi.getHighlights and formatting the response.
    server.tool(
      tools["get-highlights"].name,
      tools["get-highlights"].description,
      tools["get-highlights"].inputSchema.shape,
      async ({ meetingId }) => {
        const highlights = await tldvApi.getHighlights(meetingId);
        return {
          content: [{ type: "text", text: JSON.stringify(highlights) }]
        };
      }
    );
  • Tool definition including input schema (z.object({ meetingId: z.string() })) for get-highlights.
    "get-highlights": {
      name: "get-highlights",
      description: "Allows you to get highlights from a meeting by providing a meeting ID.",
      inputSchema: z.object({ meetingId: z.string() }),
    },
  • Implementation of getHighlights in TldvApi class, which performs the HTTP request to fetch highlights.
    async getHighlights(meetingId: string): Promise<TldvResponse<GetHighlightsResponse>> {
      return this.request<GetHighlightsResponse>(`/meetings/${meetingId}/highlights`);
    }
  • Zod schema and type definition for the output response of get-highlights (GetHighlightsResponse).
    export const GetHighlightsResponseSchema = z.object({
      meetingId: z.string(),
      data: z.array(HighlightSchema),
    });
    
    export type GetHighlightsResponse = z.infer<typeof GetHighlightsResponseSchema>;

Tool Definition Quality

Score is being calculated. Check back soon.

Install Server

Other Tools

Latest Blog Posts

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/tldv-public/tldv-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server