test
Verify the MCP-Discord server functionality to ensure proper integration and operation with Discord platforms.
Instructions
A simple test tool to verify the MCP server is working correctly
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:469-473 (handler)The handler for the "test" tool. It returns a simple text response confirming that the MCP-Discord server is working correctly.case "test": { return { content: [{ type: "text", text: "MCP-Discord server is working correctly!" }] }; }
- src/index.ts:188-194 (registration)Registration of the "test" tool in the ListTools response. Includes the tool's name, description, and input schema (empty object).{ name: "test", description: "A simple test tool to verify the MCP server is working correctly", inputSchema: { type: "object" } },