test_reddit_mcp_server
Verify Reddit MCP Server functionality by testing API connectivity and authentication to ensure proper access to Reddit data and posting capabilities.
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 handler logic for the 'test_reddit_mcp_server' tool. It returns a static text message confirming that the Reddit MCP Server is functioning correctly.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)Registration of the 'test_reddit_mcp_server' tool in the listTools response, including its name, description, and input schema (empty object, 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 }, }, },