dcc30be Merge pull request #16 from modelcontextprotocol/ashwin/protocol 05a3e54 fix protocol version in client 73c66f4 Merge pull request #13 from modelcontextprotocol/justin/uris 5cad4b5 Merge pull request #12 from modelcontextprotocol/justin/spec-updates ec96ffc Treat URIs as 'URL' type f3a8fb8 yarn build 69daade Update to latest protocol version git-subtree-dir: packages/mcp-typescript git-subtree-split: dcc30bea4904b04c50d858f6a369d3015920fab2
51 lines
1.8 KiB
JavaScript
Generated
51 lines
1.8 KiB
JavaScript
Generated
import { Protocol } from "../shared/protocol.js";
|
|
import { InitializeResultSchema, PROTOCOL_VERSION, } from "../types.js";
|
|
/**
|
|
* An MCP client on top of a pluggable transport.
|
|
*
|
|
* The client will automatically begin the initialization flow with the server when connect() is called.
|
|
*/
|
|
export class Client extends Protocol {
|
|
/**
|
|
* Initializes this client with the given name and version information.
|
|
*/
|
|
constructor(_clientInfo) {
|
|
super();
|
|
this._clientInfo = _clientInfo;
|
|
}
|
|
async connect(transport) {
|
|
await super.connect(transport);
|
|
const result = await this.request({
|
|
method: "initialize",
|
|
params: {
|
|
protocolVersion: PROTOCOL_VERSION,
|
|
capabilities: {},
|
|
clientInfo: this._clientInfo,
|
|
},
|
|
}, InitializeResultSchema);
|
|
if (result === undefined) {
|
|
throw new Error(`Server sent invalid initialize result: ${result}`);
|
|
}
|
|
if (result.protocolVersion !== PROTOCOL_VERSION) {
|
|
throw new Error(`Server's protocol version is not supported: ${result.protocolVersion}`);
|
|
}
|
|
this._serverCapabilities = result.capabilities;
|
|
this._serverVersion = result.serverInfo;
|
|
await this.notification({
|
|
method: "notifications/initialized",
|
|
});
|
|
}
|
|
/**
|
|
* After initialization has completed, this will be populated with the server's reported capabilities.
|
|
*/
|
|
getServerCapabilities() {
|
|
return this._serverCapabilities;
|
|
}
|
|
/**
|
|
* After initialization has completed, this will be populated with information about the server's name and version.
|
|
*/
|
|
getServerVersion() {
|
|
return this._serverVersion;
|
|
}
|
|
}
|
|
//# sourceMappingURL=index.js.map
|