forked from
oppi.li/claude-code
source dump of claude code
1export const DESCRIPTION = `
2Reads 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
6Usage examples:
7- Read a resource from a server: \`readMcpResource({ server: "myserver", uri: "my-resource-uri" })\`
8`
9
10export const PROMPT = `
11Reads a specific resource from an MCP server, identified by server name and resource URI.
12
13Parameters:
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`