test_reddit_mcp_server
Verify Reddit MCP Server connectivity and functionality to ensure proper integration with Reddit's API for content management and analysis.
Instructions
Test the Reddit MCP Server
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:419-427 (handler)The execution handler for the 'test_reddit_mcp_server' tool. It returns a static text message confirming that the Reddit MCP Server is operational.case "test_reddit_mcp_server": return { content: [ { type: "text", text: "Hello, world! The Reddit MCP Server is working correctly.", }, ], };
- src/index.ts:89-98 (registration)The tool registration in the ListTools response, including name, description, and empty input schema (no parameters required).{ name: "test_reddit_mcp_server", description: "Test the Reddit MCP Server", inputSchema: { type: "object", properties: { // No input parameters, this will just return a test message }, }, },
- src/index.ts:92-97 (schema)The input schema definition for the tool, which is an empty object indicating no input parameters are needed.inputSchema: { type: "object", properties: { // No input parameters, this will just return a test message }, },