UNPKG

mcp-cisco-support

Version:

MCP server for Cisco Support APIs including Bug Search and future tools

26 lines 949 B
/** * Cisco Support MCP Prompts * * Pre-defined prompts for common Cisco Support workflows. * These prompts guide users through bug searches, incident investigations, * upgrade planning, and other Cisco-specific tasks. */ import { Prompt } from '@modelcontextprotocol/sdk/types.js'; import { SupportedAPI } from '../apis/index.js'; /** * Cisco Support MCP Prompts * These prompts provide guided workflows for common Cisco support scenarios */ export declare const ciscoPrompts: Prompt[]; /** * Prompt to API mapping * Defines which APIs each prompt uses for filtering based on enabled APIs */ export declare const promptApiMapping: Record<string, SupportedAPI[]>; /** * Get available prompts filtered by enabled APIs * @param enabledApis - Array of enabled API names * @returns Filtered array of prompts */ export declare function getFilteredPrompts(enabledApis: SupportedAPI[]): Prompt[]; //# sourceMappingURL=cisco-prompts.d.ts.map