ping
Test the connection to your Vaiz workspace and verify that the MCP server is reachable.
Instructions
Simple ping tool for testing
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools.ts:554-561 (schema)Schema/definition for the 'ping' tool. It takes no input parameters (empty inputSchema) and has a simple description.
{ name: 'ping', description: 'Simple ping tool for testing', inputSchema: { type: 'object', properties: {}, }, }, - src/proxy-server.ts:481-485 (registration)Generic handler registration for all tool calls (CallToolRequestSchema). All tools, including 'ping', are forwarded to the remote API via proxyToRemote('tools/call', ...). There is no specific ping logic; it's handled generically.
lowLevel.setRequestHandler(CallToolRequestSchema, async (request) => { this.log(`← tools/call ${request.params.name}`); const result = await this.proxyToRemote('tools/call', request.params); return result as { content: Array<{ type: string; text: string }> }; });