Imports of package mcp

PathSynopsis
bufioPackage bufio implements buffered I/O. It wraps an io.Reader or io.Writer object, creating another object (Reader or Writer) that also implements the interface but provides buffering and some help for textual I/O.
bytesPackage bytes implements functions for the manipulation of byte slices.
contextPackage context defines the Context type, which carries deadlines, cancellation signals, and other request-scoped values across API boundaries and between processes.
crypto/randPackage rand implements a cryptographically secure random number generator.
encoding/jsonPackage json implements encoding and decoding of JSON as defined in RFC 7159.
errorsPackage errors implements functions to manipulate errors.
fmtPackage fmt implements formatted I/O with functions analogous to C's printf and scanf.
golang.org/x/tools/internal/jsonrpc2_v2Package jsonrpc2 is a minimal implementation of the JSON RPC 2 spec.
golang.org/x/tools/internal/mcp/internal/protocolThe protocol package contains types that define the MCP protocol.
golang.org/x/tools/internal/mcp/internal/util
golang.org/x/tools/internal/mcp/jsonschemaPackage jsonschema is an implementation of the JSON Schema specification: https://json-schema.org.
golang.org/x/tools/internal/xcontextPackage xcontext is a package to offer the extra functionality we need from contexts that is not available from the standard context package.
ioPackage io provides basic interfaces to I/O primitives.
iterPackage iter provides basic definitions and operations related to iterators over sequences.
netPackage net provides a portable interface for network I/O, including TCP/IP, UDP, domain name resolution, and Unix domain sockets.
net/httpPackage http provides HTTP client and server implementations.
net/urlPackage url parses URLs and implements query escaping.
osPackage os provides a platform-independent interface to operating system functionality.
os/execPackage exec runs external commands.
reflectPackage reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types.
slicesPackage slices defines various functions useful with slices of any type.
stringsPackage strings implements simple functions to manipulate UTF-8 encoded strings.
syncPackage sync provides basic synchronization primitives such as mutual exclusion locks.
syscallPackage syscall contains an interface to the low-level operating system primitives.
timePackage time provides functionality for measuring and displaying time.