bufio | Package 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. |
bytes | Package bytes implements functions for the manipulation of byte slices. |
context | Package context defines the Context type, which carries deadlines, cancellation signals, and other request-scoped values across API boundaries and between processes. |
crypto/rand | Package rand implements a cryptographically secure random number generator. |
encoding/json | Package json implements encoding and decoding of JSON as defined in RFC 7159. |
errors | Package errors implements functions to manipulate errors. |
fmt | Package fmt implements formatted I/O with functions analogous to C's printf and scanf. |
golang.org/x/tools/internal/jsonrpc2_v2 | Package jsonrpc2 is a minimal implementation of the JSON RPC 2 spec. |
golang.org/x/tools/internal/mcp/internal/protocol | The protocol package contains types that define the MCP protocol. |
golang.org/x/tools/internal/mcp/internal/util | |
golang.org/x/tools/internal/mcp/jsonschema | Package jsonschema is an implementation of the JSON Schema specification: https://json-schema.org. |
golang.org/x/tools/internal/xcontext | Package xcontext is a package to offer the extra functionality we need from contexts that is not available from the standard context package. |
io | Package io provides basic interfaces to I/O primitives. |
iter | Package iter provides basic definitions and operations related to iterators over sequences. |
net | Package net provides a portable interface for network I/O, including TCP/IP, UDP, domain name resolution, and Unix domain sockets. |
net/http | Package http provides HTTP client and server implementations. |
net/url | Package url parses URLs and implements query escaping. |
os | Package os provides a platform-independent interface to operating system functionality. |
os/exec | Package exec runs external commands. |
reflect | Package reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types. |
slices | Package slices defines various functions useful with slices of any type. |
strings | Package strings implements simple functions to manipulate UTF-8 encoded strings. |
sync | Package sync provides basic synchronization primitives such as mutual exclusion locks. |
syscall | Package syscall contains an interface to the low-level operating system primitives. |
time | Package time provides functionality for measuring and displaying time. |