UNPKG

okta-mcp-server

Version:

Model Context Protocol (MCP) server for Okta API operations with support for bulk operations and caching

24 lines 870 B
// Export all resources export const resources = [ { uri: 'okta://users', name: 'Users', description: 'List and stream Okta users with pagination support. Supports filtering, searching, and sorting.', mimeType: 'application/json', }, { uri: 'okta://logs', name: 'System Logs', description: 'Stream system logs for monitoring and debugging. Supports real-time streaming and historical queries.', mimeType: 'application/json', }, { uri: 'okta://events', name: 'Audit Events', description: 'Access audit events for security and compliance. Includes analytics and suspicious activity detection.', mimeType: 'application/json', }, ]; // Resource handler functions will be exported from here export * from './handlers.js'; //# sourceMappingURL=index.js.map