prompt.ts
1 export const DESCRIPTION = ` 2 Reads a specific resource from an MCP server. 3 - server: The name of the MCP server to read from 4 - uri: The URI of the resource to read 5 6 Usage examples: 7 - Read a resource from a server: \`readMcpResource({ server: "myserver", uri: "my-resource-uri" })\` 8 ` 9 10 export const PROMPT = ` 11 Reads a specific resource from an MCP server, identified by server name and resource URI. 12 13 Parameters: 14 - server (required): The name of the MCP server from which to read the resource 15 - uri (required): The URI of the resource to read 16 `