/ src / components / MCPServerDialogCopy.tsx
MCPServerDialogCopy.tsx
 1  import React from 'react'
 2  import { Text } from 'ink'
 3  import Link from 'ink-link'
 4  
 5  export function MCPServerDialogCopy(): React.ReactNode {
 6    return (
 7      <>
 8        <Text>
 9          MCP servers provide additional functionality to Claude. They may execute
10          code, make network requests, or access system resources via tool calls.
11          All tool calls will require your explicit approval before execution. For
12          more information, see{' '}
13          <Link url="https://docs.anthropic.com/s/claude-code-mcp">
14            MCP documentation
15          </Link>
16        </Text>
17  
18        <Text dimColor>
19          Remember: You can always change these choices later by running `claude
20          mcp reset-mcprc-choices`
21        </Text>
22      </>
23    )
24  }