digital-samba-mcp-server
Version:
Digital Samba MCP Server - Model Context Protocol server for Digital Samba's video conferencing API
18 lines • 777 B
TypeScript
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
/**
* Set up recording resources and tools for the MCP server
*
* This function registers all recording-related resources and tools with the MCP server.
* It creates resources for listing and retrieving recordings, as well as tools for
* managing recording operations.
*
* @param {McpServer} server - The MCP server instance
* @param {string} apiUrl - Base URL for the Digital Samba API
* @returns {void}
*
* @example
* // Register recording functionality with the MCP server
* setupRecordingFunctionality(mcpServer, 'https://api.digitalsamba.com/api/v1');
*/
export declare function setupRecordingFunctionality(server: McpServer, apiUrl: string): void;
//# sourceMappingURL=recordings.d.ts.map