MCPcopy Create free account
hub / github.com/modelcontextprotocol/typescript-sdk / isPlainObject

Function isPlainObject

src/shared/protocol.ts:1662–1664  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

1660}
1661
1662function isPlainObject(value: unknown): value is Record<string, unknown> {
1663 return value !== null && typeof value === 'object' && !Array.isArray(value);
1664}
1665
1666export function mergeCapabilities(base: ServerCapabilities, additional: Partial<ServerCapabilities>): ServerCapabilities;
1667export function mergeCapabilities(base: ClientCapabilities, additional: Partial<ClientCapabilities>): ClientCapabilities;

Callers 1

mergeCapabilitiesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…