git-subtree-dir: packages/mcp-typescript git-subtree-split: 2cc7dd104307d48bab8d27760f16c63c119d8a88
30 lines
1.2 KiB
TypeScript
Generated
30 lines
1.2 KiB
TypeScript
Generated
import { Protocol } from "../shared/protocol.js";
|
|
import { ClientCapabilities, Implementation, ServerNotification, ServerRequest, ServerResult } from "../types.js";
|
|
/**
|
|
* An MCP server on top of a pluggable transport.
|
|
*
|
|
* This server will automatically respond to the initialization flow as initiated from the client.
|
|
*/
|
|
export declare class Server extends Protocol<ServerRequest, ServerNotification, ServerResult> {
|
|
private _serverInfo;
|
|
private _clientCapabilities?;
|
|
private _clientVersion?;
|
|
/**
|
|
* Callback for when initialization has fully completed (i.e., the client has sent an `initialized` notification).
|
|
*/
|
|
oninitialized?: () => void;
|
|
/**
|
|
* Initializes this server with the given name and version information.
|
|
*/
|
|
constructor(_serverInfo: Implementation);
|
|
private _oninitialize;
|
|
/**
|
|
* After initialization has completed, this will be populated with the client's reported capabilities.
|
|
*/
|
|
getClientCapabilities(): ClientCapabilities | undefined;
|
|
/**
|
|
* After initialization has completed, this will be populated with information about the client's name and version.
|
|
*/
|
|
getClientVersion(): Implementation | undefined;
|
|
}
|
|
//# sourceMappingURL=index.d.ts.map
|