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.
cmpPackage cmp provides types and functions related to comparing ordered values.
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/base64Package base64 implements base64 encoding as specified by RFC 4648.
encoding/gobPackage gob manages streams of gobs - binary values exchanged between an Encoder (transmitter) and a Decoder (receiver).
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/util
golang.org/x/tools/internal/mcp/jsonschemaPackage jsonschema is an implementation of the [JSON Schema specification], a JSON-based format for describing the structure of JSON data.
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.
logPackage log implements a simple logging package.
log/slogPackage slog provides structured logging, in which log records include a message, a severity level, and various other attributes expressed as key-value pairs.
mapsPackage maps defines various functions useful with maps of any type.
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.
path/filepathPackage filepath implements utility routines for manipulating filename paths in a way compatible with the target operating system-defined file paths.
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.